blob: c17017c5e1cc29e476283a4987a883185bfff9f6 [file] [log] [blame]
Michael Davis994a93b2017-04-18 10:01:04 -05001@mixin col-label {
2 text-transform: uppercase;
3 font-weight: 700;
4 font-size: .8em;
5}
6
7$title-minWidth: 210px;
8
9.inventory__heading {
10 font-weight: 700;
Michael Davis6dc5f182017-06-26 13:07:27 -050011 padding: 1em 0;
Michael Davis994a93b2017-04-18 10:01:04 -050012}
13
Michael Davis994a93b2017-04-18 10:01:04 -050014// Inventory Overview
Michael Davis6dc5f182017-06-26 13:07:27 -050015.inventory-overview {
Michael Davis994a93b2017-04-18 10:01:04 -050016 .inventory__group {
17 position: relative;
18 display: block;
Michael Davis6dc5f182017-06-26 13:07:27 -050019 margin: 0;
Michael Davis994a93b2017-04-18 10:01:04 -050020 font-weight: 700;
21 background: $white;
Michael Davis6dc5f182017-06-26 13:07:27 -050022 padding: 1em 1em 0 1.5em;
Michael Davis994a93b2017-04-18 10:01:04 -050023 text-decoration: none;
Michael Davis6dc5f182017-06-26 13:07:27 -050024 border-left: 1px solid $medgrey;
25 border-right: 1px solid $medgrey;
26 border-bottom: 0;
Michael Davis994a93b2017-04-18 10:01:04 -050027 vertical-align: middle;
Michael Davis6dc5f182017-06-26 13:07:27 -050028 @include fastTransition-all;
Michael Davis994a93b2017-04-18 10:01:04 -050029 &:hover {
30 background: $lightblue;
31 color: $black;
Michael Davis6dc5f182017-06-26 13:07:27 -050032 cursor: pointer;
Michael Davis994a93b2017-04-18 10:01:04 -050033 }
Michael Davis6dc5f182017-06-26 13:07:27 -050034 &.active {
35 background: darken($lightgrey, 3%);
36 &:last-child {
37 border-bottom: 1px solid $medgrey;
38 }
Michael Davis994a93b2017-04-18 10:01:04 -050039 }
40 .inv-active {
41 color: darken($active, 20%);
42 }
Michael Davis994a93b2017-04-18 10:01:04 -050043 &.inv-disabled {
Michael Davis6dc5f182017-06-26 13:07:27 -050044 background: $medgrey;
45 .inventory__device-col,
46 .inventory__function-col {
Michael Davis994a93b2017-04-18 10:01:04 -050047 color: lighten($darkgrey, 20%);
48 }
Michael Davis6dc5f182017-06-26 13:07:27 -050049 .accord-trigger {
50 display: none;
51 }
52 &:hover,
53 .accord-trigger:hover {
54 cursor: default;
55 }
Michael Davis994a93b2017-04-18 10:01:04 -050056 }
Michael Davis994a93b2017-04-18 10:01:04 -050057 }
58
59 // Header row
60 .header__actions-bar {
Michael Davis6dc5f182017-06-26 13:07:27 -050061 padding: 0 1em 0 1.5em;
62 .inventory__assoc-event {
63 padding-right: 1em;
64 &:hover {
65 cursor: pointer;
66 }
67 }
68 }
69
70 //sortable heading
71 .sort-heading {
72 position: relative;
73 color: $lightblue;
74 &::before {
75 content: '\025be';
76 position: absolute;
77 right: 0;
78 top: 8px;
79 transform: rotate(180deg);
80 font-size: 1.3em;
81 }
82 &::after {
83 content: '\025be';
84 position: absolute;
85 right: -1px;
86 bottom: 8px;
87 font-size: 1.3em;
88 }
89 &.sort-up {
90 &::before {
91 color: $darkbg__accent;
92 }
93 }
94 &.sort-down {
95 &::after {
96 color: $darkbg__accent;
97 }
98 }
Michael Davis994a93b2017-04-18 10:01:04 -050099 }
100}
Michael Davis6dc5f182017-06-26 13:07:27 -0500101// Inventory items
102.inventory-overview {
Michael Davis994a93b2017-04-18 10:01:04 -0500103 .inventory__device-col {
104 margin-right: 6px;
105 width: 50%;
Michael Davis7cad8cb2017-07-27 15:39:45 -0500106 text-transform: capitalize;
Michael Davis994a93b2017-04-18 10:01:04 -0500107 @include mediaQuery(medium){
108 width: auto;
109 }
110 }
Michael Davis6dc5f182017-06-26 13:07:27 -0500111
Michael Davis994a93b2017-04-18 10:01:04 -0500112 .inventory__function-col {
Michael Davis6dc5f182017-06-26 13:07:27 -0500113 @include col-label;
114 color: $severity-medium-lightbg;
115 display: none;
Michael Davis994a93b2017-04-18 10:01:04 -0500116 }
117 .inventory__device-col,
Michael Davis6dc5f182017-06-26 13:07:27 -0500118 .inventory__function-col {
Michael Davis994a93b2017-04-18 10:01:04 -0500119 @media (min-width: 1025px){
120 display: inline-block;
121 @include calcColumn-4(5px);
122 }
123 }
124
Michael Davis6dc5f182017-06-26 13:07:27 -0500125 .inventory__metadata {
126 height: 0;
Michael Davis994a93b2017-04-18 10:01:04 -0500127 max-height: 0;
Michael Davis6dc5f182017-06-26 13:07:27 -0500128 margin: 0 -1em 0 -1.5em;
129 border-top: 1px solid $medgrey;
130 position: relative;
Michael Davis994a93b2017-04-18 10:01:04 -0500131 overflow: hidden;
Michael Davis6dc5f182017-06-26 13:07:27 -0500132 @include fastTransition-all;
Michael Davis994a93b2017-04-18 10:01:04 -0500133 &.active {
Michael Davis6dc5f182017-06-26 13:07:27 -0500134 height: 100%;
135 max-height: 1000px;
136 border-bottom: 1px solid $medgrey;
137 background: $lightgrey;
138 padding-bottom: 1em;
Michael Davis994a93b2017-04-18 10:01:04 -0500139 @include fastTransition-all;
Michael Davis994a93b2017-04-18 10:01:04 -0500140 }
Michael Davis27a22732017-07-20 15:19:30 -0500141 &:hover {
142 cursor: default;
143 }
Michael Davis994a93b2017-04-18 10:01:04 -0500144 }
Michael Davis6dc5f182017-06-26 13:07:27 -0500145
146 .inventory__metadata-block {
147 min-width: 100%;
148 padding: .5em 1em .5em 1.5em;
149 @include mediaQuery(small) {
150 @include calcColumn-3;
Michael Davis994a93b2017-04-18 10:01:04 -0500151 }
Michael Davisfa278fb2017-07-10 11:28:55 -0500152 .content-label {
Michael Davis27a22732017-07-20 15:19:30 -0500153 color: $darkgrey;
Michael Davisfa278fb2017-07-10 11:28:55 -0500154 }
Michael Davis994a93b2017-04-18 10:01:04 -0500155 }
Michael Davis6dc5f182017-06-26 13:07:27 -0500156
157 .inventory__metadata-scroll {
158 position: relative;
159 height: 100%;
160 max-height: 200px;
161 overflow-y: scroll;
162 bottom: 0;
163 right:0;
164 width: 100%;
165 padding-top: 1em;
166 padding-left: 1.5em;
167 border-top: 1px solid $medgrey;
168 .inventory__metadata-block {
169 @include calcSplitColumn;
170 margin-bottom: .5em;
171 padding: 0;
172 }
Michael Davis994a93b2017-04-18 10:01:04 -0500173 @include mediaQuery(medium) {
Michael Davis6dc5f182017-06-26 13:07:27 -0500174 position: absolute;
175 border-left: 1px solid $medgrey;
176 border-top: 0;
177 max-height: 500px;
178 padding: .5em 1em;
Michael Davis27a22732017-07-20 15:19:30 -0500179 width: 30%;
180 }
181 .icon__warning {
182 margin-top: -10px;
Michael Davis994a93b2017-04-18 10:01:04 -0500183 }
184 }
185}
186
187//end inventory details
188
189