diff options
Diffstat (limited to 'web/cobrands/sass/_admin.scss')
-rw-r--r-- | web/cobrands/sass/_admin.scss | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/web/cobrands/sass/_admin.scss b/web/cobrands/sass/_admin.scss index 58917a8ce..8a16b3f00 100644 --- a/web/cobrands/sass/_admin.scss +++ b/web/cobrands/sass/_admin.scss @@ -163,3 +163,41 @@ $button_bg_col: #a1a1a1; // also search bar (tables) float: left; } } + +.js-metadata-items { + margin: 0; + + li { + list-style: none; + position: relative; + } + + .js-metadata-item:nth-child(odd) { + background-color: #eee; + } + + .js-metadata-options { + li { + list-style: none; + + label, input[type=text] { + display: inline-block; + margin: 0; + padding: 0.25em; + } + + &:nth-child(even) { + background-color: #ddd; + } + &:nth-child(odd) { + background-color: #ccc; + } + } + } + + .js-metadata-item-remove { + position: absolute; + top: 0.25em; + right: 0.25em; + } +} |