[PORTAL-7] Rebase
[portal.git] / ecomp-portal-FE-os / client / src / styles / att-abs.less
1 //portal abs table component
2 .c-ecomp-portal-abs-table{
3     width: 100%;
4     height: 600px;
5     overflow-x: auto;
6     overflow-y: auto;
7     background-color: @portalLightGray;
8
9     .tablesorter-default {
10         //border: 1px solid @q;
11
12         th,
13         thead td {
14             .dGray16m;
15             color: #333333;
16             background-color: @portalLightGray;
17             border-collapse: collapse;
18             //border-top-style: none;
19             border: 1px solid @q;
20             padding: 0;
21             font-weight: 700;
22             height: 38px;
23         }
24
25         tbody tr td {
26             .dGray16m;
27             border-left: 1px solid @portalLGray;
28             background-color: @portalWhite;
29             border-bottom: 1px solid @portalLGray;
30             height: 32px;
31             div {
32                 line-height: 32px;
33             }
34         }
35
36         .td-first {
37             border-left: none;
38         }
39
40         .tablesorter-search-highlight {
41             font-weight: bold;
42         }
43
44
45         tr:first-child {
46             border-bottom: 1px solid @portalLGray;
47         }
48
49         th:first-child{
50             border-right: 1px solid @portalLGray;
51         }
52         th:nth-child(2){
53             border-right: 1px solid @portalLGray;
54         }
55         th:nth-child(3){
56             border-right: 1px solid @portalLGray;
57         }
58
59         tr:last-child {
60             td {
61                 border-bottom-style:  none;
62             }
63         }
64
65
66     }
67 }
68
69 //portal abs select component
70 .c-ecomp-portal-abs-select{
71     width: @select-width;
72     display: inline-block;
73     margin-right: 10px;
74     .select2-chosen{
75         width: @select-width;
76         line-height: 20px;
77     }
78     .select2-container .select2-choice {
79         width: @select-width;
80         border-radius: 6px;
81         border-color: @portalLGray;
82     }
83
84   .select2-results {
85     width: @select-width;
86     background-color: @portalWhite;
87   }
88
89     .form-field, .form-field-input-container {
90         width: @select-width;
91     }
92 }