-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMainLayout.razor.css
More file actions
83 lines (65 loc) · 1.63 KB
/
MainLayout.razor.css
File metadata and controls
83 lines (65 loc) · 1.63 KB
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
.page {
height: 100%;
font-family: var(--bs-font-sans-serif, var(--dxds-font-family-sans-serif));
}
::deep .content {
overflow: auto;
display: flex;
flex-direction: column;
}
::deep .icon-back {
--icon-mask-image: var(--icon-back-mask-image);
}
::deep .icon-close {
--icon-mask-image: var(--icon-close-mask-image);
}
::deep .icon-menu {
--icon-mask-image: var(--icon-menu-mask-image);
}
::deep .icon-log-in {
--icon-mask-image: var(--icon-log-in-mask-image);
}
::deep .icon-log-out {
--icon-mask-image: var(--icon-log-out-mask-image);
}
::deep .icon-user {
--icon-mask-image: var(--icon-user-mask-image);
}
::deep .docs-icon {
--icon-mask-image: var(--icon-docs-mask-image);
}
::deep .demos-icon {
--icon-mask-image: var(--icon-demos-mask-image);
}
::deep .footer-button:hover .demos-icon {
background-color: var(--dxbl-btn-hover-color);
}
::deep .footer-button:hover .docs-icon {
background-color: var(--dxbl-btn-hover-color);
}
::deep .menu-button:hover .icon {
background-color: var(--dxbl-btn-hover-color);
}
::deep .menu-button-nav:hover .icon {
background-color: var(--dxbl-btn-hover-color);
}
.panel-open .menu-button {
display: inline-flex;
}
.menu-button-nav {
background-image: url("images/close.svg");
width: 1.875rem;
height: 1.875rem;
}
.nav-buttons-container {
display: flex;
gap: 10px;
padding: 2rem 1rem;
}
.nav-buttons-container ::deep .menubutton-float-end {
margin-left: auto;
}
.nav-buttons-container ::deep .dxbl-btn-icon-only {
--dxbl-btn-padding-x: 0.75rem;
--dxbl-btn-padding-y: 0.25rem;
}