summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/columns-edit-component/edit-drill-down-link/edit-drill-down-link.component.css
blob: efdfd3ee4640216b448c7b8069b929ebd37ded1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
.field-group {
    position: relative;
    display: block;
    width: 400px;
    height: 40px;
    border-radius: 0.25rem;}



textarea {
    display: block;
    width: 400px;
    max-width: 50%;
    padding: 15px;
}
input {
    width: 250px;
    height: 20px;
}
select {
    margin-right: -1;
    max-width: 400px;
    height: 36px;
    line-height: 25px;
    width: 400px;
    background-color: #95959521; }
.checkbox .skin {
    background-color: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    display: inline-block;
    height: 24px;
    width: 24px;
    position: absolute;
    left: 0;
    top: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    appearance: button;
    cursor: pointer; }

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer; }

input[type=search] {
    -webkit-appearance: textfield; }

input[type=search]:-webkit-search-cancel-button,
input[type=search]:-webkit-search-decoration {
    -webkit-appearance: none; }

table, tr, td, th {
    border: 0;
}

table caption {
    text-align: left; }

table thead th {
    vertical-align: bottom; }

table th,
table td {
    padding: 13px 20px;
    line-height: 1.2rem;
    color: rgb(112, 111, 111);
    font-size: 1rem;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word; }

table th {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: normal;
    color: #000;

    padding: 13px 20px; }

label + .field-group, label + .input-append, label + .row, label + .row-nowrap, label + .form-row {
    margin-top: 5px;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 1px solid #087ac2;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 17px;
    height: 17px;
    background: #087ac2;
    border: 1px solid #08598b;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}