~ubuntu-branches/ubuntu/trusty/moodle/trusty

« back to all changes in this revision

Viewing changes to theme/bootstrapbase/less/moodle/core.less

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2014-01-21 13:40:52 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20140121134052-ym2qvsp2cd9vq0p6
Tags: 2.5.4-1
* New upstream release, fixing security issues:
  - MSA-14-0001 Config passwords visibility issue [CVE-2014-0008]
  - MSA-14-0002 Group constraints lacking in "login as" [CVE-2014-0009]
  - MSA-14-0003 CSRF vulnerability in profile fields [CVE-2014-0010]
* Move /var/lib/moodle directory into package.
* Revert back to bundled yui3. Unfortunately, version in Debian and
  of upstream are not compatible (closes: #735312).

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    display:none;
15
15
}
16
16
 
17
 
.empty-region-side-post #region-bs-main-and-pre.span9 {
18
 
    width:100%;
 
17
.empty-region-side-post #region-bs-main-and-pre.span9,
 
18
.empty-region-side-pre #region-bs-main-and-post.span9,
 
19
.empty-region-side-post #region-bs-main-and-post.span9 #region-main.span8 {
 
20
    /** LTR with no post area.
 
21
        RTL with no pre area.
 
22
        RTL with no post area. **/
 
23
    width: 100%;
19
24
}
20
25
 
21
 
.empty-region-side-pre #region-main {
 
26
.empty-region-side-pre #region-bs-main-and-pre.span9 #region-main {
 
27
    /** LTR with no pre area. **/
22
28
    float:none;
23
29
    width:100%;
24
30
}
37
43
    .fluid-span(3);
38
44
}
39
45
 
40
 
.empty-region-side-post #region-bs-main-and-post.span9 #region-main.span8 {
41
 
    /** RTL with no post area. **/
42
 
    width:100%;
 
46
.empty-region-side-pre #region-bs-main-and-post.span9 #region-main.span8 {
 
47
    /** RTL with no pre area. **/
 
48
    float: right;
43
49
}
44
50
 
45
51
/** Page layout CSS ends **/
141
147
.jsenabled .collapsed .collapsibleregioninner {
142
148
    visibility: hidden;
143
149
}
 
150
.collapsible-actions {
 
151
    display: none;
 
152
    text-align: right;
 
153
}
 
154
.dir-rtl .collapsible-actions {
 
155
    text-align: left;
 
156
}
 
157
.jsenabled .collapsible-actions {
 
158
    display: block;
 
159
}
 
160
.collapsible-actions .collapseexpand {
 
161
    padding-left: 20px;
 
162
    background: url([[pix:t/collapsed]]) 2px center no-repeat;
 
163
}
 
164
.dir-rtl .collapsible-actions .collapseexpand {
 
165
    padding-right: 20px;
 
166
    padding-left: 0;
 
167
    background: url([[pix:t/collapsed_rtl]]) right center no-repeat;
 
168
}
 
169
.collapsible-actions .collapse-all,
 
170
.dir-rtl .collapsible-actions .collapse-all {
 
171
    background-image: url([[pix:t/expanded]]);
 
172
}
144
173
.yui-overlay .yui-widget-bd {
145
174
    background-color: #FFEE69;
146
175
    border: 1px solid #A6982B;
1930
1959
.breadcrumb-nav .breadcrumb {
1931
1960
    margin: 0;
1932
1961
}
 
1962
 
 
1963
body.bodynoheader {
 
1964
  padding-top: 0;
 
1965
}
 
1966
 
 
1967
a.disabled:hover,
 
1968
a.disabled {
 
1969
    text-decoration: none;
 
1970
    cursor: default;
 
1971
    font-style: italic;
 
1972
    color: #808080;
 
1973
}