@saltcorn/bootstrap-prompt-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,143 @@
1
+ #sidebar {
2
+ width: 240px;
3
+ margin-left: 0px;
4
+ }
5
+
6
+ #wrapper.narrowed #sidebar {
7
+ width: 75px;
8
+ overflow-x: hidden;
9
+ }
10
+ #sidebar .navbar-nav {
11
+ width: 100%;
12
+ }
13
+ #wrapper.narrowed #sidebar .navbar-nav {
14
+ width: 240px;
15
+ }
16
+
17
+ #wrapper #content-wrapper {
18
+ background-color: #f8f9fc;
19
+ width: 100%;
20
+ overflow-x: clip;
21
+ width: calc(100% - 240px);
22
+ }
23
+
24
+ #wrapper.narrowed #content-wrapper {
25
+ width: calc(100% - 75px);
26
+ }
27
+
28
+ #wrapper #content-wrapper #content {
29
+ flex: 1 0 auto;
30
+ }
31
+
32
+ #sidebar ul.components {
33
+ padding: 10px 0;
34
+ border-bottom: 1px solid white;
35
+ }
36
+
37
+ #sidebar ul li a {
38
+ padding: 10px 20px;
39
+ display: block;
40
+ }
41
+
42
+ #sidebar ul li .sublink {
43
+ padding: 10px 30px;
44
+ display: block;
45
+ }
46
+
47
+ #sidebar ul li a:hover {
48
+ color: white;
49
+ }
50
+
51
+ #sidebar ul li.active > a,
52
+ a[aria-expanded="true"] {
53
+ color: #fff;
54
+ }
55
+
56
+ #sidebar a[data-toggle="collapse"] {
57
+ position: relative;
58
+ }
59
+
60
+ .with-sidebar #page-inner-content {
61
+ width: 100%;
62
+ min-height: 100vh;
63
+ }
64
+
65
+ #sidebar form.menusearch .input-group {
66
+ width: 92% !important;
67
+ margin-left: 12px;
68
+ }
69
+
70
+ #sidebar #sidebarToggle {
71
+ width: 2.5rem;
72
+ height: 2.5rem;
73
+ text-align: center;
74
+ margin-bottom: 1rem;
75
+ margin-top: 1rem;
76
+ cursor: pointer;
77
+ }
78
+
79
+ #sidebar #sidebarToggle::after {
80
+ font-weight: 900;
81
+ content: "\f104";
82
+ font-family: "Font Awesome 5 Free";
83
+ margin-right: 0.1rem;
84
+ }
85
+
86
+ #wrapper.narrowed #sidebar #sidebarToggle::after {
87
+ content: "\f105";
88
+ font-family: "Font Awesome 5 Free";
89
+ margin-left: 0.25rem;
90
+ }
91
+ #wrapper.narrowed #sidebar .narrowed-hide {
92
+ display: none;
93
+ }
94
+
95
+ @media (max-width: 768px) {
96
+ #wrapper #content-wrapper {
97
+ width: 100%;
98
+ }
99
+ }
100
+
101
+ .table.table-card-rows {
102
+ border-spacing: 0px 8px;
103
+ border-collapse: separate;
104
+ }
105
+ .table.table-card-rows tbody {
106
+ transform: translateY(8px);
107
+ }
108
+ .table.table-card-rows tr {
109
+ border-radius: var(--bs-border-radius);
110
+ }
111
+ .table-hover.table-card-rows > tbody > tr:hover > * {
112
+ --tblr-table-bg-state: transparent !important;
113
+ --bs-table-accent-bg: transparent !important;
114
+ }
115
+ .table.table-card-rows thead th {
116
+ border-block: 1px solid var(--bs-border-color-translucent) !important;
117
+ padding: 18px 15px;
118
+ font-weight: 600;
119
+ background-color: var(--bs-secondary-bg-subtle);
120
+ }
121
+ .table.table-card-rows thead th:first-child {
122
+ border-left: 1px solid var(--bs-border-color-translucent) !important;
123
+ border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
124
+ }
125
+ .table.table-card-rows thead th:last-child {
126
+ border-right: 1px solid var(--bs-border-color-translucent) !important;
127
+ border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
128
+ }
129
+ .table.table-card-rows tbody td {
130
+ border-block: 1px solid var(--bs-border-color-translucent) !important;
131
+ position: relative;
132
+ z-index: 11;
133
+ padding: 15px 15px;
134
+ background-color: var(--bs-card-bg);
135
+ }
136
+ .table.table-card-rows tbody td:first-child {
137
+ border-left: 1px solid var(--bs-border-color-translucent) !important;
138
+ border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
139
+ }
140
+ .table.table-card-rows tbody td:last-child {
141
+ border-right: 1px solid var(--bs-border-color-translucent) !important;
142
+ border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
143
+ }