Radek Krejci | cd1ebe1 | 2018-01-11 11:34:17 +0100 | [diff] [blame^] | 1 | @import '../netopeer-common'; |
| 2 | |
| 3 | .subtree { |
| 4 | cursor: default; |
| 5 | display: block; |
| 6 | width: 100%; |
| 7 | } |
| 8 | |
| 9 | .node { |
| 10 | width: 100%; |
| 11 | overflow: hidden; |
| 12 | |
| 13 | &:hover { |
| 14 | background-color: #e1e1e1 |
| 15 | } |
| 16 | |
| 17 | > div { |
| 18 | display: inline-block; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .node_edit { |
| 23 | display: table; |
| 24 | width: 100%; |
| 25 | overflow: hidden; |
| 26 | |
| 27 | &:hover { |
| 28 | background-color: #e1e1e1 |
| 29 | } |
| 30 | |
| 31 | img, |
| 32 | input { |
| 33 | display: inline-table; |
| 34 | margin-right: 0.25em; |
| 35 | } |
| 36 | input { |
| 37 | height: 2em; |
| 38 | padding-left: 0.3em; |
| 39 | background-color: #def2de; |
| 40 | |
| 41 | &.invalid { |
| 42 | background-color: #f2dede; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | &.indentation { |
| 47 | height:2.1em; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | .status, |
| 52 | .node_info { |
| 53 | color: grey; |
| 54 | } |
| 55 | |
| 56 | .dirty { |
| 57 | background-color: #fafad2; |
| 58 | } |
| 59 | |
| 60 | .icon, |
| 61 | .icon_action { |
| 62 | font-size: xx-small; |
| 63 | height: 2em; |
| 64 | } |
| 65 | |
| 66 | .icon_action { |
| 67 | cursor: pointer; |
| 68 | } |
| 69 | |
| 70 | .icon_hidden { |
| 71 | visibility: hidden; |
| 72 | } |
| 73 | |
| 74 | .module_name { |
| 75 | float: right; |
| 76 | text-align: right; |
| 77 | max-width: 10em; |
| 78 | word-wrap: break-word; |
| 79 | } |
| 80 | |
| 81 | .children { |
| 82 | padding-left: 0em; |
| 83 | } |
| 84 | |
| 85 | .value { |
| 86 | display: inline-block; |
| 87 | margin-left: 1.5em; |
| 88 | word-wrap: break-word; |
| 89 | } |
| 90 | |
| 91 | .indentation { |
| 92 | width: 1.7em; |
| 93 | } |
| 94 | |