Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 1 | .license-model-limits-view { |
| 2 | max-height: 490px; |
| 3 | overflow: auto; |
| 4 | |
| 5 | .limit-editor-title { |
| 6 | padding: 10px 50px; |
| 7 | background-color: $blue; |
| 8 | color: $white; |
| 9 | |
| 10 | } |
| 11 | .list-editor-view-add-title { |
| 12 | margin-right: 20px; |
| 13 | } |
| 14 | |
| 15 | .no-limits-text { |
| 16 | padding-left: 50px; |
| 17 | } |
| 18 | |
| 19 | .list-editor-view { |
| 20 | .list-editor-view-header { |
| 21 | border-bottom: none; |
| 22 | padding-top: 30px; |
| 23 | padding-bottom: 0; |
| 24 | } |
| 25 | |
| 26 | .list-editor-view-list-scroller { |
| 27 | margin-top: 0; |
| 28 | margin-bottom: 30px; |
| 29 | } |
| 30 | .list-editor-view-list { |
| 31 | width: 100%; |
| 32 | .list-editor-item-view { |
| 33 | min-height: 50px; |
| 34 | height: 50px; |
| 35 | background-color: $tlv-light-gray; |
| 36 | border-color: transparent; |
| 37 | margin: 1px 0; |
| 38 | .list-editor-item-view-content { |
| 39 | padding-left: 0; |
| 40 | } |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 41 | |
| 42 | .svg-icon { |
| 43 | margin-top: 10px; |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 44 | margin-right: 50px; |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 45 | fill: $gray; |
| 46 | &:hover { |
| 47 | fill: $dark-gray; |
| 48 | } |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 49 | } |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 50 | |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 51 | &.selectable { |
| 52 | &:hover { |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 53 | .list-editor-item-view-field { |
| 54 | .text.description, .text-name { |
| 55 | &:after { |
| 56 | background-color: darken($tlv-light-gray, 4%); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | } |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 61 | background-color: darken($tlv-light-gray, 4%); |
| 62 | cursor: pointer; |
| 63 | } |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 64 | |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 65 | } |
| 66 | &:hover { |
| 67 | border-color: transparent; |
| 68 | cursor: default; |
| 69 | } |
| 70 | .list-editor-item-view-content { |
| 71 | .list-editor-item-view-field { |
| 72 | display: flex; |
| 73 | align-items: center; |
| 74 | white-space: nowrap; |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 75 | |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 76 | &.limit-name { |
| 77 | .text.name { |
| 78 | @extend .body-1-semibold; |
| 79 | color: $blue; |
| 80 | text-transform: uppercase; |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 81 | margin-left : 45px; |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | border-right: 1px solid $light-gray; |
| 85 | margin-right: 22px; |
| 86 | flex: 0.4; |
| 87 | display: flex; |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 88 | justify-content: left; |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | &.limit-description { |
| 92 | max-width: 300px; |
| 93 | margin-right: 22px; |
| 94 | } |
| 95 | |
| 96 | &.limit-metric-details { |
| 97 | max-width: 300px; |
| 98 | } |
| 99 | |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 100 | |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 101 | .text.description, .text.name { |
| 102 | overflow: hidden; |
| 103 | text-overflow: ellipsis; |
| 104 | white-space: nowrap; |
ilanap | 56d382a | 2017-10-22 12:30:25 +0300 | [diff] [blame] | 105 | &:after { |
| 106 | background: $tlv-light-gray; |
| 107 | } |
| 108 | |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | .limit-editor{ |
| 117 | .limit-editor-form { |
| 118 | .limit-editor-form-grid-section { |
| 119 | padding-bottom: 0; |
| 120 | } |
| 121 | .validation-form-content { |
| 122 | padding: 21px 45px; |
| 123 | } |
| 124 | .limit-editor-buttons { |
| 125 | display: flex; |
| 126 | justify-content: flex-end; |
| 127 | .sdc-button { |
| 128 | margin-left: 20px; |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | } |