Changeset 3436:a9f79153b3d0
- Timestamp:
- 12/03/16 10:33:55 (9 years ago)
- Branch:
- default
- Location:
- admin/style
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r3435 r3436 1360 1360 1361 1361 /* specific buttons */ 1362 .checkbox-helper {1362 .checkbox-helper, #gototop { 1363 1363 font-size: 0.825em; 1364 color: #333; 1364 1365 text-shadow: none; 1365 background-color: transparent; 1366 background-image: none; 1366 background: #fff; 1367 1367 box-shadow: none; 1368 1368 border: 1px solid #676e78; 1369 margin-bottom: .25em; } 1370 .checkbox-helper:hover { 1371 background-color: #a2cbe9; 1372 background-image: none; 1373 box-shadow: none; } 1369 margin-bottom: .25em; 1370 text-align: center; } 1371 .checkbox-helper:hover, #gototop:hover { 1372 background: #a2cbe9; 1373 box-shadow: none; 1374 border: 1px solid #676e78; } 1375 1376 #gototop { 1377 display: none; 1378 z-index: 1000; 1379 position: fixed; 1380 bottom: 0; 1381 right: .5em; 1382 width: 10em; 1383 padding: .25em; 1384 border-radius: .25em; } 1385 1386 #gototop a, 1387 #gototop a:link, 1388 #gototop a:hover, 1389 #gototop a:active { 1390 color: #333; 1391 background: transparent; 1392 border: none; } 1374 1393 1375 1394 .metaRemove, … … 1881 1900 #helplink p { 1882 1901 padding: 0 0 0 .5em; } 1883 1884 #gototop {1885 display: none;1886 z-index: 1000;1887 position: fixed;1888 bottom: 0;1889 right: .5em;1890 width: 10em;1891 padding: .25em;1892 border: 1px solid #636363;1893 border-radius: .25em;1894 background-color: #fff;1895 color: #333;1896 font-size: .875em;1897 text-align: center; }1898 1899 #gototop a,1900 #gototop a:link,1901 #gototop a:hover,1902 #gototop a:active {1903 background: transparent;1904 border: none;1905 font-weight: bold;1906 color: #636363; }1907 1902 1908 1903 #footer p { -
admin/style/scss/partials/_buttons.scss
r3435 r3436 5 5 input[type=reset]::-moz-focus-inner, 6 6 input[type=submit]::-moz-focus-inner { 7 8 7 border: 0; 8 padding: 0; 9 9 } 10 10 … … 17 17 input[type=reset], 18 18 input[type=submit] { 19 20 21 22 23 24 25 26 27 28 29 30 31 19 border: 1px solid #ccc; 20 font-family: $sans-serif-input; 21 padding: 3px 10px; 22 line-height: normal !important; 23 display: inline-block; 24 font-size: 100%; 25 text-align: center; 26 text-decoration: none; 27 cursor: pointer; 28 position: relative; 29 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 30 border-style: solid; 31 border-width: 1px; 32 32 } 33 33 … … 36 36 input[type=reset], 37 37 input[type=submit] { 38 38 -webkit-appearance: button; 39 39 } 40 40 … … 43 43 44 44 .void-btn { 45 46 47 45 border: none; 46 border-radius: 0; 47 padding: 0; 48 48 } 49 49 … … 55 55 button.submit, 56 56 input.button.start { 57 58 59 60 61 57 color: #fff; 58 background-color: #25a6e1; 59 @include background-image(linear-gradient(to bottom, #25a6e1, #188bc0)); 60 border-color: #25a6e1; 61 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 62 62 } 63 63 … … 72 72 a.button.submit:hover, 73 73 a.button.submit:focus { 74 75 76 74 background-color: #188bc0; 75 @include background-image(linear-gradient(to bottom, #188bc0, #25a6e1)); 76 border-color: #188bc0; 77 77 } 78 78 … … 91 91 a.button.delete, 92 92 a.button.reset { 93 94 95 96 97 98 93 color: #000; 94 background-color: #eaeaea; 95 @include background-image(linear-gradient(to bottom, #f9f9f9, #eaeaea)); 96 background-repeat: repeat-x; 97 border-color: #dfdfdf #dfdfdf #c5c5c5; 98 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); 99 99 } 100 100 … … 121 121 a.button.reset:focus, 122 122 a.button:focus { 123 124 125 126 123 background-color: #dadada; 124 @include background-image(linear-gradient(to bottom, #eaeaea, #dadada)); 125 background-repeat: repeat-x; 126 border-color: #cccccc #cccccc #b5b5b5; 127 127 } 128 128 … … 135 135 button.delete, 136 136 a.button.delete { 137 137 color: #900; 138 138 } 139 139 … … 148 148 button.delete:focus, 149 149 a.button.delete:focus { 150 151 152 153 154 155 150 color: #ffffff; 151 background-color: #b33630; 152 @include background-image(linear-gradient(to bottom, #dc5f59, #b33630)); 153 background-repeat: repeat-x; 154 border-color: #cd504a; 155 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); 156 156 } 157 157 158 158 #info-box a.button, #info-box button { 159 160 159 padding: 0 .5em; 160 margin-left: 2em; 161 161 } 162 162 163 163 .button.add, 164 164 button.add { 165 166 167 168 169 170 165 color: #000; 166 background-color: #bee74b; 167 @include background-image(linear-gradient(to bottom, #bee74b, #9bca1c)); 168 border-color: #bee74b; 169 padding: .33em 1.33em .5em; 170 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); 171 171 // font-weight: normal; 172 172 // font-size: 1.16em; … … 179 179 button.add:active, 180 180 button.add:focus { 181 182 183 181 background-color: #9bca1c; 182 @include background-image(linear-gradient(to bottom, #9bca1c, #bee74b)); 183 border-color: #9bca1c; 184 184 } 185 185 186 186 .button-add:focus { 187 187 outline: dotted 1px; 188 188 } 189 189 … … 192 192 193 193 p.top-add { 194 195 194 text-align: right; 195 margin: 0; 196 196 } 197 197 … … 203 203 button.disabled, 204 204 button[type=submit].disabled { 205 206 207 208 205 text-shadow: none; 206 color: #676e78; 207 background: #F5F5F5; 208 border: 1px solid #CCC; 209 209 } 210 210 … … 213 213 button.disabled:hover, 214 214 button[type=submit].disabled:hover { 215 216 217 215 color: #676e78; 216 background: #eee; 217 border: 1px solid #CCC; 218 218 } 219 219 … … 221 221 /* specific buttons */ 222 222 223 .checkbox-helper { 224 font-size: 0.825em; 225 text-shadow: none; 226 background-color: transparent; 227 background-image: none; 228 box-shadow: none; 229 border: 1px solid #676e78; 230 margin-bottom: .25em; 231 &:hover { 232 background-color: #a2cbe9; 233 background-image: none; 234 box-shadow: none; 235 } 223 .checkbox-helper, #gototop { 224 font-size: 0.825em; 225 color: #333; 226 text-shadow: none; 227 background: #fff; 228 box-shadow: none; 229 border: 1px solid #676e78; 230 margin-bottom: .25em; 231 text-align: center; 232 &:hover { 233 background: #a2cbe9; 234 box-shadow: none; 235 border: 1px solid #676e78; 236 } 237 } 238 239 #gototop { 240 display: none; 241 z-index: 1000; 242 position: fixed; 243 bottom: 0; 244 right: .5em; 245 width: 10em; 246 padding: .25em; 247 border-radius: .25em; 248 } 249 250 #gototop a, 251 #gototop a:link, 252 #gototop a:hover, 253 #gototop a:active { 254 color: #333; 255 background: transparent; 256 border: none; 236 257 } 237 258 238 259 .metaRemove, 239 260 .addMeta button:not(.metaGetMore) { 240 241 242 243 261 border: none; 262 border-radius: 0; 263 padding: 0; 264 background: none; 244 265 } 245 266 .addMeta button:not(.metaGetMore) { 246 247 248 249 250 } 267 border-bottom: #676e78 1px dotted; 268 text-shadow: initial; 269 box-shadow: initial; 270 margin-bottom: 2px; 271 } -
admin/style/scss/partials/_footer.scss
r3355 r3436 1 #gototop {2 display: none;3 z-index: 1000;4 position: fixed;5 bottom: 0;6 right: .5em;7 width: 10em;8 padding: .25em;9 border: 1px solid #636363;10 border-radius: .25em;11 background-color: #fff;12 color: #333;13 font-size: .875em;14 text-align: center;15 }16 17 #gototop a,18 #gototop a:link,19 #gototop a:hover,20 #gototop a:active {21 background: transparent;22 border: none;23 font-weight: bold;24 color: #636363;25 }26 27 1 #footer p { 28 2 margin: 0;
Note: See TracChangeset
for help on using the changeset viewer.