Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
875 lars 1
table.dataTable tbody td,
2
table.dataTable tbody th {
3
  position: relative;
4
}
5
 
6
div.dt-autofill-handle {
7
  position: absolute;
8
  bottom: 0;
9
  right: 0;
10
  height: 8px;
11
  width: 8px;
12
  z-index: 1;
13
  box-sizing: border-box;
14
  border: 1px solid #316ad1;
15
  background: linear-gradient(to bottom, #abcffb 0%, #4989de 100%);
16
}
17
 
18
td.focus div.dt-autofill-handle {
19
  bottom: -4px;
20
  right: -5px;
21
}
22
 
23
div.dt-autofill-select {
24
  position: absolute;
25
  z-index: 1001;
26
  background-color: #4989de;
27
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
28
}
29
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
30
  height: 3px;
31
  margin-top: -1px;
32
}
33
div.dt-autofill-select.left, div.dt-autofill-select.right {
34
  width: 3px;
35
  margin-left: -1px;
36
}
37
 
38
div.dt-autofill-list {
39
  position: fixed;
40
  top: 50%;
41
  left: 50%;
42
  width: 500px;
43
  margin-left: -250px;
44
  background-color: white;
45
  border-radius: 6px;
46
  box-shadow: 0 0 5px #555;
47
  border: 2px solid #444;
48
  z-index: 11;
49
  box-sizing: border-box;
50
  padding: 1.5em 2em;
51
}
52
div.dt-autofill-list ul {
53
  display: table;
54
  margin: 0;
55
  padding: 0;
56
  list-style: none;
57
  width: 100%;
58
}
59
div.dt-autofill-list ul li {
60
  display: table-row;
61
}
62
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
63
  border-bottom: none;
64
}
65
div.dt-autofill-list ul li:hover {
66
  background-color: #f6f6f6;
67
}
68
div.dt-autofill-list div.dt-autofill-question {
69
  display: table-cell;
70
  padding: 0.5em 0;
71
  border-bottom: 1px solid #ccc;
72
}
73
div.dt-autofill-list div.dt-autofill-question input[type=number] {
74
  padding: 6px;
75
  width: 30px;
76
  margin: -2px 0;
77
}
78
div.dt-autofill-list div.dt-autofill-button {
79
  display: table-cell;
80
  padding: 0.5em 0;
81
  border-bottom: 1px solid #ccc;
82
}
83
 
84
div.dt-autofill-background {
85
  position: fixed;
86
  top: 0;
87
  left: 0;
88
  width: 100%;
89
  height: 100%;
90
  background: rgba(0, 0, 0, 0.7);
91
  background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
92
  z-index: 10;
93
}
94
 
95
div.dt-autofill-list button {
96
  padding: 0.35em 1em;
97
}