Projekt

Obecné

Profil

Stáhnout (1.38 KB) Statistiky
| Větev: | Tag: | Revize:
1
button {
2
  font-weight: bold;
3
  font-size: large;
4
  background-color: var(--primary-color);
5
  color: var(--search-text-color);
6
  border-style: none;
7
  border-radius: 0;
8
  min-width: 80pt;
9
}
10

    
11
button:hover {
12
  background-color: var(--primary-color-dark);
13
}
14

    
15
.input-group-text {
16
  background-color: var(--search-background-color);
17
  color: grey;
18
  border-style: none;
19
  border-radius: 0;
20
}
21

    
22
.form-control {
23
  height: 35pt;
24
  border-color: var(--search-border-color);
25
  border-top-style: solid;
26
  border-bottom-width: 0.5px;
27
  border-bottom-style: solid;
28
  border-left-style: hidden;
29
  border-right-style: hidden;
30
}
31

    
32
#search-icon {
33
  border-color: var(--search-border-color);
34
  border-top-style: solid;
35
  border-bottom-style: solid;
36
  border-left-style: solid;
37
}
38

    
39
#clear-icon {
40
  border-color: var(--search-border-color);
41
  border-top-style: solid;
42
  border-bottom-style: solid;
43
  border-left-style: hidden;
44
}
45

    
46
input:focus {
47
  border-color: var(--search-border-color);
48
  -webkit-box-shadow: none;
49
  box-shadow: none;
50
  z-index: 0 !important;
51
}
52

    
53
.clickable {
54
  cursor: pointer;
55
}
56

    
57
.input-group-append .btn, .input-group-prepend .btn {
58
  z-index: 0 !important;
59
}
60

    
61
.input-group {
62
  margin-bottom: 8pt !important;
63
}
64

    
65
.mat-checkbox {
66
  padding: 6pt 6pt 1pt;
67
  background-color: white !important;
68
  color: var(--text-grey);
69
  display: none;
70
}
71

    
72
.is-visible {
73
  display: initial;
74
}
75

    
76
.is-not-visible {
77
  display: none;
78
}
(1-1/4)