summaryrefslogtreecommitdiffstats
path: root/src/wwwroot/styles/index.css
blob: 88e1d2aee5830b7030d7228460e09088240ed182 (plain) (blame)
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
:root {
  --background: #f6f7f8;
  --color: #444f54;
}

* {
  box-sizing: border-box;
}

[disabled],
.disabled {
  pointer-events: none;
  filter: opacity(0.4);
}

html,
body {
  color: var(--color);
  background-color: var(--background) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
html.ios,
body.ios {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  height: initial !important;
}

body {
  height: unset !important;
}

.k-grid-norecords-template,
.k-grid-norecords {
  font-size: 26px;
  display: flex;
  justify-content: center;
  height: 75px;
  align-items: center;
  margin: auto;
  -webkit-user-select: none;
          user-select: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.link {
  color: cornflowerblue;
  cursor: pointer;
}

:root {
  --top-navbar-height: 53px;
  --sidebar-width: 10rem;
}

#navbar {
  height: var(--top-navbar-height);
  max-height: var(--top-navbar-height);
}
#navbar .item.image {
  max-width: 250px;
  max-height: 100%;
  padding: 5px !important;
}
#navbar .item.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sidebar {
  margin-top: var(--top-navbar-height) !important;
  max-height: calc(100% - var(--top-navbar-height)) !important;
  height: calc(100% - var(--top-navbar-height)) !important;
}

main {
  margin-top: var(--top-navbar-height);
}

@media (min-width: 768px) {
  #sidebar {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    width: var(--sidebar-width) !important;
  }

  main {
    padding: 15px;
    margin-left: var(--sidebar-width);
  }

  #sidebar-menu-toggler {
    display: none !important;
  }
}
.k-calendar-view .k-state-disabled {
  color: white;
  background-color: red;
  border-radius: 0 !important;
}