Changeset 3398:88f3d2561542 for admin/style
- Timestamp:
- 11/09/16 11:35:30 (9 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3392 r3398 1164 1164 span.form-note { 1165 1165 text-transform: none; } 1166 1167 .no-more-info { 1168 display: none; } 1166 1169 1167 1170 /* Removes inner padding and border in FF3+ - Knacss */ … … 2091 2094 /* raccourcis */ 2092 2095 #icons { 2093 overflow: hidden; 2094 text-align: center; } 2096 display: flex; 2097 flex-wrap: wrap; 2098 justify-content: center; } 2095 2099 2096 2100 #icons p { 2097 2101 width: 13em; 2098 2102 text-align: center; 2099 margin: 1em 0 2em; 2100 display: inline-block; 2101 vertical-align: top; } 2103 margin: 1em 0 2em; } 2102 2104 2103 2105 #icons a, … … 2174 2176 #dashboard-boxes { 2175 2177 margin: 1em auto 1em; 2176 padding-top: 2em; } 2177 2178 .db-items, 2179 .db-contents { 2180 display: inline-block; 2181 text-align: center; } 2178 padding-top: 2em; 2179 display: flex; 2180 flex-wrap: wrap; 2181 justify-content: center; } 2182 2182 2183 2183 .no-js .outgoing img { -
admin/style/scss/init/_config.scss
r3389 r3398 2 2 3 3 // ----------------- Compass config --------------- // 4 // Do not support IE less than IE 94 // Do not support IE less than IE10 5 5 $browser-minimum-versions: ( 6 6 "ie": "10" -
admin/style/scss/partials/_forms.scss
r3355 r3398 208 208 text-transform: none; 209 209 } 210 211 // .more-info Additional information on fieldset, field, … (may be hide from user-prefs) 212 .more-info { 213 } 214 .no-more-info { 215 display: none; 216 } -
admin/style/scss/partials/_index.scss
r3355 r3398 1 1 #dashboard-main { 2 2 text-align: center; 3 3 } 4 4 … … 7 7 8 8 #icons { 9 overflow: hidden; 10 text-align: center; 9 // overflow: hidden; 10 // text-align: center; 11 display: flex; 12 flex-wrap: wrap; 13 justify-content: center; 11 14 } 12 15 13 16 #icons p { 14 15 16 17 display: inline-block;18 vertical-align: top;17 width: 13em; 18 text-align: center; 19 margin: 1em 0 2em; 20 // display: inline-block; 21 // vertical-align: top; 19 22 } 20 23 … … 24 27 #icons a:hover, 25 28 #icons a:focus { 26 27 29 border-bottom-width: 0; 30 text-decoration: none; 28 31 } 29 32 30 33 #icons a span { 31 32 34 border-bottom: 1px dotted #999; 35 color: #333; 33 36 } 34 37 35 38 #icons a img { 36 37 38 39 40 39 padding: 1.5em; 40 background-color: #f9f9f9; 41 border-radius: 8px; 42 border: 1px solid #dadada; 43 display: inline-block; 41 44 } 42 45 43 46 #icons a:focus img, 44 47 #icons a:hover img { 45 46 47 48 background: #bee74b; 49 outline: 0; 50 border-color: #dadada; 48 51 } 49 52 50 53 #icons a:focus { 51 52 54 outline: 0; 55 border-color: #fff; 53 56 } 54 57 55 58 #icons a:hover span, 56 59 #icons a:focus span { 57 60 border-bottom-style: solid; 58 61 } 59 62 60 63 #icons a:focus span { 61 64 border: 2px solid #bee74b; 62 65 } 63 66 … … 66 69 67 70 #quick { 68 69 70 71 72 73 71 padding: 1em; 72 max-width: 976px; 73 margin: 0 auto; 74 background: #f5f5f5; 75 box-shadow: 0 1px 2px rgba(0, 0, 0, .2); 76 text-align: left; 74 77 } 75 78 76 79 #quick h3 { 77 78 80 margin-bottom: 0.2em; 81 font-size: 1.2em; 79 82 } 80 83 81 84 #quick p.qinfo { 82 83 84 85 86 85 margin: -.7em -1em 1em; 86 background: #D9EDF7 url(info.png) no-repeat .2em .2em; 87 border: 1px solid #BCE8F1; 88 padding: .2em 1em .1em 24px; 89 color: #000; 87 90 } 88 91 … … 90 93 .q-cat, 91 94 .q-cat label { 92 93 94 95 95 display: inline-block; 96 vertical-align: top; 97 margin-right: 1em; 98 margin-top: 0; 96 99 } 97 100 98 101 .q-cat label { 99 102 margin-right: .3em; 100 103 } 101 104 102 105 #quick #new_cat { 103 106 margin-bottom: 2em; 104 107 } 105 108 … … 108 111 109 112 #dashboard-boxes { 110 margin: 1em auto 1em; 111 padding-top: 2em; 113 margin: 1em auto 1em; 114 padding-top: 2em; 115 display: flex; 116 flex-wrap: wrap; 117 justify-content: center; 112 118 } 113 119 114 120 .db-items, 115 121 .db-contents { 116 117 122 // display: inline-block; 123 // text-align: center; 118 124 } 119 125 120 126 .no-js .outgoing img { 121 127 display: none; 122 128 } 123 129 124 130 #dashboard-boxes .box { 125 126 127 128 129 130 131 padding: 10px; 132 border: 1px solid #ccc; 133 border-radius: 3px; 134 min-height: 200px; 135 margin: 10px; 136 text-align: left; 131 137 } 132 138 133 139 .dc-box { 134 140 background: transparent url(dc_logos/sq-logo-32.png) no-repeat top right; 135 141 } 136 142 137 143 .db-items img, 138 144 .db-contents img { 139 145 vertical-align: middle; 140 146 } 141 147 142 148 .db-items ul, 143 149 .db-contents ul { 144 145 146 150 display: block; 151 padding-left: 1.5em; 152 list-style: square; 147 153 } 148 154 149 155 .db-items li, 150 156 .db-contents li { 151 157 margin: 0.25em 0 0 0; 152 158 } 153 159 154 160 #news dt { 155 156 161 font-weight: bold; 162 margin: 0 0 0.4em 0; 157 163 } 158 164 159 165 #news dd { 160 166 margin: 0 0 1em 0; 161 167 } 162 168 163 169 #news dd p { 164 170 margin: 0.2em 0 0 0; 165 171 } 166 172 … … 169 175 170 176 #upg-notify ul { 171 177 padding-left: 1.5em; 172 178 } 173 179 174 180 #upg-notify li { 175 181 color: #fff; 176 182 }
Note: See TracChangeset
for help on using the changeset viewer.