Changeset 3764:b50bf1d2ac95
- Timestamp:
- 06/26/18 12:20:37 (7 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 4 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3763 r3764 327 327 328 328 #wrapper { 329 background: #f 3f3f3 url(bg_wrapper.png) repeat-y 14em;329 background: #fff; 330 330 position: relative; 331 331 padding-top: 1.5em; … … 744 744 padding: 0 1em .5em 1em; 745 745 margin: 0 -1em 1em -1em; 746 background: #fff url(bg_h2.png) repeat-x center bottom; } 746 background: #fff; 747 border-bottom: 1px solid #868686; } 747 748 748 749 /* page courante dans le fil d'ariane */ … … 2173 2174 #quick p.qinfo { 2174 2175 margin: -.7em -1em 1em; 2175 background: #d9edf7 url( info.png) no-repeat 0.2em 0.2em;2176 background: #d9edf7 url(msg-info.png) no-repeat 0.2em 0.2em; 2176 2177 border: 1px solid #bce8f1; 2177 2178 padding: .2em 1em .1em 24px; … … 2293 2294 position: relative; } 2294 2295 .box.theme:hover { 2295 background: #f3f3f3 url(texture.png); }2296 background: #f3f3f3; } 2296 2297 .box.theme input { 2297 2298 margin-bottom: 1em; } … … 2390 2391 margin: 5px; 2391 2392 padding: 20px 18px 6px; 2392 background: #f ff url(texture.png);2393 background: #f3f3f3; 2393 2394 border: 1px solid #ececec; 2394 2395 border-radius: .5em; … … 2557 2558 2558 2559 .media-folder { 2559 background: transparent url(bg_menu.png) repeat-y; 2560 border-color: #ececec; } 2560 background: transparent; 2561 border-color: #ececec; 2562 border-left-width: 8px; } 2561 2563 .media-folder .media-link { 2562 2564 font-size: 1.125em; … … 3215 3217 3216 3218 #wrapper { 3217 background: #f 3f3f3 url(bg_wrapper.png) repeat-y 17em; } }3219 background: #fff; } } 3218 3220 @media screen and (max-width: 44em) { 3219 3221 #help-button { -
admin/style/scss/partials/_blog_theme.scss
r3763 r3764 15 15 position: relative; 16 16 &:hover { 17 background: $theme-box-over url(texture.png);17 background: $theme-box-over; 18 18 } 19 19 input { … … 143 143 margin: 5px; 144 144 padding: 20px 18px 6px; 145 background: $theme-current-background url(texture.png);145 background: $theme-current-background; 146 146 border: 1px solid $theme-current-border; 147 147 border-radius: .5em; -
admin/style/scss/partials/_index.scss
r3763 r3764 71 71 p.qinfo { 72 72 margin: -.7em -1em 1em; 73 background: $quick-info-background url( info.png) no-repeat .2em .2em;73 background: $quick-info-background url(msg-info.png) no-repeat .2em .2em; 74 74 border: 1px solid $quick-info-border; 75 75 padding: .2em 1em .1em 24px; -
admin/style/scss/partials/_layout.scss
r3763 r3764 27 27 28 28 #wrapper { 29 background: $wrapper-background url(bg_wrapper.png) repeat-y 14em;29 background: $wrapper-background; 30 30 position: relative; 31 31 padding-top: 1.5em; -
admin/style/scss/partials/_markup.scss
r3763 r3764 7 7 padding: 0 1em .5em 1em; 8 8 margin: 0 -1em 1em -1em; 9 background: $breadcrumb-background url(bg_h2.png) repeat-x center bottom; 9 background: $breadcrumb-background; 10 border-bottom: 1px solid $breadcrumb-border; 10 11 } 11 12 -
admin/style/scss/partials/_media.scss
r3763 r3764 105 105 106 106 .media-folder { 107 background: $media-folder-background url(bg_menu.png) repeat-y;107 background: $media-folder-background; 108 108 border-color: $media-folder-border; 109 border-left-width: 8px; 109 110 .media-link { 110 111 font-size: 1.125em; -
admin/style/scss/partials/_mediaqueries.scss
r3763 r3764 16 16 } 17 17 #wrapper { 18 background: $wrapper-background url(bg_wrapper.png) repeat-y 17em;18 background: $wrapper-background; 19 19 } 20 20 } -
admin/style/scss/themes/_light.scss
r3763 r3764 87 87 $header-active-background-alt: $gray-semi-dark; // #868686 88 88 89 $wrapper-background: $ gray-very-light; // #f3f3f389 $wrapper-background: $white; // #ffffff 90 90 91 91 $content-background: $white; // #ffffff … … 124 124 125 125 $breadcrumb-background: $white; // #ffffff 126 $breadcrumb-border: $gray-semi-dark; // #868686 126 127 $breadcrumb-current: $current-page; // #d30e60 127 128 … … 317 318 $theme-action-border: $gray-lighter; // #ececec 318 319 319 $theme-current-background: $ white; // #ffffff320 $theme-current-background: $gray-very-light; // #f3f3f3 320 321 $theme-current-border: $gray-lighter; // #ececec 321 322 $theme-current-shadow: rgba($gray-very-dark, 0.1);
Note: See TracChangeset
for help on using the changeset viewer.