Changeset 3389:57c2b37ea3d5
- Timestamp:
- 11/03/16 09:29:15 (9 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3370 r3389 320 320 top: 0; 321 321 left: 14em; 322 width: 1 2px;322 width: 10px; 323 323 height: 100%; 324 324 overflow: hidden; … … 337 337 338 338 .hide-mm #content { 339 margin-left: 1 2px; }339 margin-left: 10px; } 340 340 341 341 .hide-mm #content > h2 { 342 margin-left: calc(-1em - 1 2px); }342 margin-left: calc(-1em - 10px); } 343 343 344 344 .hide-mm #main-menu { … … 3243 3243 .with-js .hidden-if-js { 3244 3244 display: none; } 3245 3246 /* debug */3247 #debug {3248 position: absolute;3249 top: 0;3250 width: 100%;3251 height: 4px;3252 background: #ffd478; }3253 3254 #debug div {3255 display: none;3256 padding: 3px 0.5em 2px; }3257 3258 #debug p {3259 margin: 0.5em 0; }3260 3261 #debug:hover {3262 height: auto;3263 padding: 2px 1em;3264 z-index: 100; }3265 3266 #debug:hover div {3267 display: block; }3268 3269 .debug {3270 background: #ffd478;3271 padding: 3px 0.5em 2px; }3272 3273 input[type=submit].delete.debug,3274 a.delete.debug {3275 border-color: #ffd478; }3276 3277 input[type=submit].delete.debug:hover,3278 a.delete.debug:hover {3279 background: #ffd478;3280 color: #900;3281 border-color: #ffd478; }3282 3245 3283 3246 /* ---------------------------------------------- Couleurs ajoutées via javascript … … 3729 3692 padding-left: 6px; 3730 3693 padding-right: 6px; } } 3694 /** -------------------------------------------------- 3695 Debug 3696 --------------------------------------------------- */ 3697 /* debug */ 3698 #debug { 3699 position: absolute; 3700 top: 0; 3701 width: 100%; 3702 height: 4px; 3703 background: #ffd478; } 3704 3705 #debug div { 3706 display: none; 3707 padding: 3px 0.5em 2px; } 3708 3709 #debug p { 3710 margin: 0.5em 0; } 3711 3712 #debug:hover { 3713 height: auto; 3714 padding: 2px 1em; 3715 z-index: 100; } 3716 3717 #debug:hover div { 3718 display: block; } 3719 3720 .debug { 3721 background: #ffd478; 3722 padding: 3px 0.5em 2px; } 3723 3724 input[type=submit].delete.debug, 3725 a.delete.debug { 3726 border-color: #ffd478; } 3727 3728 input[type=submit].delete.debug:hover, 3729 a.delete.debug:hover { 3730 background: #ffd478; 3731 color: #900; 3732 border-color: #ffd478; } -
admin/style/scss/default.scss
r3368 r3389 81 81 --------------------------------------------------- */ 82 82 @import "vendor/magnific-popup"; 83 84 /** -------------------------------------------------- 85 Debug 86 --------------------------------------------------- */ 87 @import "partials/debug"; -
admin/style/scss/init/_config.scss
r3365 r3389 90 90 // =========================================================================== // 91 91 92 $collapser-width: 1 2px;92 $collapser-width: 10px; -
admin/style/scss/partials/_utils.scss
r3355 r3389 1 /* debug */2 3 #debug {4 position: absolute;5 top: 0;6 width: 100%;7 height: 4px;8 background: #ffd478;9 }10 11 #debug div {12 display: none;13 padding: 3px 0.5em 2px;14 }15 16 #debug p {17 margin: 0.5em 0;18 }19 20 #debug:hover {21 height: auto;22 padding: 2px 1em;23 z-index: 100;24 }25 26 #debug:hover div {27 display: block;28 }29 30 .debug {31 background: #ffd478;32 padding: 3px 0.5em 2px;33 }34 35 input[type=submit].delete.debug,36 a.delete.debug {37 border-color: #ffd478;38 }39 40 input[type=submit].delete.debug:hover,41 a.delete.debug:hover {42 background: #ffd478;43 color: #900;44 border-color: #ffd478;45 }46 47 48 1 /* ---------------------------------------------- Couleurs ajoutées via javascript 49 2 /* color-picker.js */
Note: See TracChangeset
for help on using the changeset viewer.