LaravelTest

Форк
0
/
responsive.bootstrap4.css 
185 строк · 5.0 Кб
1
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
2
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
3
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
4
  cursor: default !important;
5
}
6
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
7
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
8
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
9
  display: none !important;
10
}
11
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
12
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
13
  position: relative;
14
  padding-left: 30px;
15
  cursor: pointer;
16
}
17
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
18
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
19
  top: 50%;
20
  left: 5px;
21
  height: 1em;
22
  width: 1em;
23
  margin-top: -9px;
24
  display: block;
25
  position: absolute;
26
  color: white;
27
  border: 0.15em solid white;
28
  border-radius: 1em;
29
  box-shadow: 0 0 0.2em #444;
30
  box-sizing: content-box;
31
  text-align: center;
32
  text-indent: 0 !important;
33
  font-family: "Courier New", Courier, monospace;
34
  line-height: 1em;
35
  content: "+";
36
  background-color: #0275d8;
37
}
38
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
39
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
40
  content: "-";
41
  background-color: #d33333;
42
}
43
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td.dtr-control,
44
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th.dtr-control {
45
  padding-left: 27px;
46
}
47
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td.dtr-control:before,
48
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th.dtr-control:before {
49
  left: 4px;
50
  height: 14px;
51
  width: 14px;
52
  border-radius: 14px;
53
  line-height: 14px;
54
  text-indent: 3px;
55
}
56
table.dataTable.dtr-column > tbody > tr > td.dtr-control,
57
table.dataTable.dtr-column > tbody > tr > th.dtr-control,
58
table.dataTable.dtr-column > tbody > tr > td.control,
59
table.dataTable.dtr-column > tbody > tr > th.control {
60
  position: relative;
61
  cursor: pointer;
62
}
63
table.dataTable.dtr-column > tbody > tr > td.dtr-control:before,
64
table.dataTable.dtr-column > tbody > tr > th.dtr-control:before,
65
table.dataTable.dtr-column > tbody > tr > td.control:before,
66
table.dataTable.dtr-column > tbody > tr > th.control:before {
67
  top: 50%;
68
  left: 50%;
69
  height: 0.8em;
70
  width: 0.8em;
71
  margin-top: -0.5em;
72
  margin-left: -0.5em;
73
  display: block;
74
  position: absolute;
75
  color: white;
76
  border: 0.15em solid white;
77
  border-radius: 1em;
78
  box-shadow: 0 0 0.2em #444;
79
  box-sizing: content-box;
80
  text-align: center;
81
  text-indent: 0 !important;
82
  font-family: "Courier New", Courier, monospace;
83
  line-height: 1em;
84
  content: "+";
85
  background-color: #0275d8;
86
}
87
table.dataTable.dtr-column > tbody > tr.parent td.dtr-control:before,
88
table.dataTable.dtr-column > tbody > tr.parent th.dtr-control:before,
89
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
90
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
91
  content: "-";
92
  background-color: #d33333;
93
}
94
table.dataTable > tbody > tr.child {
95
  padding: 0.5em 1em;
96
}
97
table.dataTable > tbody > tr.child:hover {
98
  background: transparent !important;
99
}
100
table.dataTable > tbody > tr.child ul.dtr-details {
101
  display: inline-block;
102
  list-style-type: none;
103
  margin: 0;
104
  padding: 0;
105
}
106
table.dataTable > tbody > tr.child ul.dtr-details > li {
107
  border-bottom: 1px solid #efefef;
108
  padding: 0.5em 0;
109
}
110
table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
111
  padding-top: 0;
112
}
113
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
114
  border-bottom: none;
115
}
116
table.dataTable > tbody > tr.child span.dtr-title {
117
  display: inline-block;
118
  min-width: 75px;
119
  font-weight: bold;
120
}
121
div.dtr-modal {
122
  position: fixed;
123
  box-sizing: border-box;
124
  top: 0;
125
  left: 0;
126
  height: 100%;
127
  width: 100%;
128
  z-index: 100;
129
  padding: 10em 1em;
130
}
131
div.dtr-modal div.dtr-modal-display {
132
  position: absolute;
133
  top: 0;
134
  left: 0;
135
  bottom: 0;
136
  right: 0;
137
  width: 50%;
138
  height: 50%;
139
  overflow: auto;
140
  margin: auto;
141
  z-index: 102;
142
  overflow: auto;
143
  background-color: #f5f5f7;
144
  border: 1px solid black;
145
  border-radius: 0.5em;
146
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
147
}
148
div.dtr-modal div.dtr-modal-content {
149
  position: relative;
150
  padding: 1em;
151
}
152
div.dtr-modal div.dtr-modal-close {
153
  position: absolute;
154
  top: 6px;
155
  right: 6px;
156
  width: 22px;
157
  height: 22px;
158
  border: 1px solid #eaeaea;
159
  background-color: #f9f9f9;
160
  text-align: center;
161
  border-radius: 3px;
162
  cursor: pointer;
163
  z-index: 12;
164
}
165
div.dtr-modal div.dtr-modal-close:hover {
166
  background-color: #eaeaea;
167
}
168
div.dtr-modal div.dtr-modal-background {
169
  position: fixed;
170
  top: 0;
171
  left: 0;
172
  right: 0;
173
  bottom: 0;
174
  z-index: 101;
175
  background: rgba(0, 0, 0, 0.6);
176
}
177

178
@media screen and (max-width: 767px) {
179
  div.dtr-modal div.dtr-modal-display {
180
    width: 95%;
181
  }
182
}
183
div.dtr-bs-modal table.table tr:first-child td {
184
  border-top: none;
185
}
186

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.