Changeset 3442:2cfa77757f11
- Timestamp:
- 12/06/16 14:45:01 (9 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/meta-editor.js
r3439 r3442 79 79 80 80 this.meta_list.empty(); 81 for (var i=0; i <meta.length; i++) {81 for (var i=0; i < meta.length; i++) { 82 82 li = $('<li>'+meta[i]+'</li>'); 83 83 a_remove = $('<button class="metaRemove"><img src="images/trash.png" alt="remove" /></button>'); -
admin/style/default.css
r3439 r3442 1404 1404 1405 1405 .addMeta button:not(.metaGetMore) { 1406 border-bottom: #676e78 1px dotted;1407 1406 text-shadow: initial; 1408 1407 box-shadow: initial; 1409 1408 margin-bottom: 2px; } 1409 .addMeta button:not(.metaGetMore):hover, .addMeta button:not(.metaGetMore):focus { 1410 background: #fc0; } 1410 1411 1411 1412 .warn, -
admin/style/scss/partials/_buttons.scss
r3439 r3442 223 223 /* specific buttons */ 224 224 225 // Ajax or js buttons (action do not reload current page) 225 226 .checkbox-helper, 226 227 #gototop, … … 270 271 271 272 .addMeta button:not(.metaGetMore) { 272 border-bottom: #676e78 1px dotted;273 273 text-shadow: initial; 274 274 box-shadow: initial; 275 275 margin-bottom: 2px; 276 } 276 &:hover, 277 &:focus { 278 background: #fc0; 279 } 280 }
Note: See TracChangeset
for help on using the changeset viewer.