Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 1 | @import '../netopeer-common'; |
| 2 | @import '../inventory/inventory.component'; |
| 3 | @import './tree.component'; |
| 4 | |
| 5 | .tab-add, |
| 6 | .tab-reload, |
| 7 | .tab-close { |
| 8 | cursor: pointer; |
| 9 | font-weight: bold; |
| 10 | font-family: monospace; |
| 11 | font-size: large; |
| 12 | } |
| 13 | .tab-action-first { |
| 14 | padding-left: 0.3em; |
| 15 | } |
| 16 | .tab-action-last { |
| 17 | padding-right: 0.5em; |
| 18 | } |
| 19 | |
| 20 | .tab-icon { |
| 21 | vertical-align: middle; |
| 22 | height: 1em; |
| 23 | } |
| 24 | |
| 25 | .tab-add { |
| 26 | filter: invert(100%); |
Radek Krejci | 6e772b2 | 2018-01-25 13:28:57 +0100 | [diff] [blame] | 27 | |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 28 | &:hover { |
Radek Krejci | 7ddaf93 | 2018-01-26 10:53:57 +0100 | [diff] [blame] | 29 | color: $green; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 30 | } |
| 31 | } |
| 32 | |
| 33 | .tab-close:hover { |
Radek Krejci | 6e772b2 | 2018-01-25 13:28:57 +0100 | [diff] [blame] | 34 | color: $colorFailureBorder; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 35 | } |
| 36 | .tab-reload:hover { |
| 37 | color: blue; |
| 38 | } |
| 39 | |
| 40 | #confignav { |
| 41 | position: fixed; |
| 42 | width: 100%; |
Radek Krejci | 7ddaf93 | 2018-01-26 10:53:57 +0100 | [diff] [blame] | 43 | background-color: $colorMain; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 44 | padding-left: 1em; |
| 45 | |
| 46 | a { |
| 47 | cursor: pointer; |
| 48 | text-decoration: none; |
| 49 | display: inline-block; |
| 50 | padding: 0.2em 0em 0.1em 1em; |
Radek Krejci | 7ddaf93 | 2018-01-26 10:53:57 +0100 | [diff] [blame] | 51 | color: $colorTextInverse; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 52 | |
| 53 | &:visited, |
| 54 | &:link { |
| 55 | color: inherited; |
| 56 | } |
| 57 | &:hover, |
| 58 | &.active { |
Radek Krejci | 7ddaf93 | 2018-01-26 10:53:57 +0100 | [diff] [blame] | 59 | background-color: $colorBackground; |
| 60 | color: $colorText; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 61 | } |
| 62 | &active:hover { |
| 63 | cursor: default; |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | #config-data { |
| 69 | width: 100%; |
| 70 | } |
| 71 | |
| 72 | .item_action_expand, |
| 73 | .item_action_collapse { |
| 74 | height: 1em; |
| 75 | } |
| 76 | |
| 77 | .item_action_collapse:hover { |
Radek Krejci | 7ddaf93 | 2018-01-26 10:53:57 +0100 | [diff] [blame] | 78 | color: $red; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | .item_action_expand:hover { |
Radek Krejci | 7ddaf93 | 2018-01-26 10:53:57 +0100 | [diff] [blame] | 82 | color: $green; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | .modifications-status { |
| 86 | margin-bottom: 2em; |
| 87 | margin-right: 2em; |
| 88 | padding: 0.5em 1em; |
| 89 | |
| 90 | div { |
| 91 | position: fixed; |
| 92 | bottom: 2em; |
| 93 | right: 2em; |
Radek Krejci | 6e772b2 | 2018-01-25 13:28:57 +0100 | [diff] [blame] | 94 | background-color: $colorChanged; |
| 95 | border: 2px solid $colorChangedBorder; |
Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame] | 96 | padding: 0.5em 1em; |
| 97 | } |
| 98 | } |
Radek Krejci | 4990494 | 2018-01-29 13:32:11 +0100 | [diff] [blame] | 99 | |
| 100 | .loading { |
| 101 | text-align: center; |
| 102 | margin: auto; |
| 103 | width: 10em; |
| 104 | div { |
| 105 | margin: auto; |
| 106 | width: 50px; |
| 107 | } |
| 108 | } |