Subversion Repositories oidplus

Rev

Rev 632 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
387 daniel-mar 1
 
2
About the folder "userdata/styles"
3
----------------------------------
4
 
5
In this folder, you can place an alternative version of oidplus_base.css and setup_base.css.
6
 
7
This folder can contain following files:
8
 
635 daniel-mar 9
- oidplus_base.css : This file REPLACES the oidplus_base.css file of the currently active design.
10
                     Please see a WARNING below.
11
                     *DEPRECATED*: Please use a design plugin (located in plugins/[vendorname]/design/)
12
                     in order to define individual designs for your system.
13
                     Design plugins also allow you to include graphics in the plugin
14
                     directory itself (so you don't need "userdata_pub").
15
 
387 daniel-mar 16
- oidplus_add.css  : This file is added after oidplus_base.css
17
                     If you just want to override some styles, then you could write your
18
                     changes in oidplus_add.css and give them priority using the
19
                     "!important" statement.
451 daniel-mar 20
                     Example: If you want to have your own logo, then you might want to
635 daniel-mar 21
                     create an oidplus_add.css file which overrides "#system_title_logo"
22
                     using the "!important" statement. The logo is put into
23
                     userdata_pub.
24
                     You shall not edit "logo.png", because things might
25
                     change during software updates.
26
 
27
- setup_base.css   : This file REPLACES the setup/setup_base.css file.
387 daniel-mar 28
                     Please see a WARNING below.
29
 
30
- setup_add.css    : Like oidplus_add.css , this file is placed after setup_base.css
31
                     and allows you to do minor tweaks to the design.
32
 
33
 
34
!! ATTENTION !!
35
 
36
(1) You need to make sure that your changes are in-sync with the current versions
37
    of oidplus_base.css and setup_base.css!
38
 
39
(2) Note that the userdata/ directory cannot be accessed using the browser,
40
    so if you need to reference graphics, please put them in the folder "userdata_pub".
41
    (The CSS data is processed in oidplus.min.css.php and setup/setup.min.css.php instead.)