accrete 0.0.23__py3-none-any.whl → 0.0.25__py3-none-any.whl
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.
- accrete/contrib/ui/__init__.py +1 -4
- accrete/contrib/ui/components.py +7 -5
- accrete/contrib/ui/context.py +11 -11
- accrete/contrib/ui/filter.py +9 -16
- accrete/contrib/ui/querystring.py +3 -77
- accrete/contrib/ui/static/css/accrete.css +131 -63
- accrete/contrib/ui/static/css/accrete.css.map +1 -1
- accrete/contrib/ui/static/css/accrete.scss +116 -22
- accrete/contrib/ui/static/css/icons.css +18 -0
- accrete/contrib/ui/static/js/filter.js +563 -476
- accrete/contrib/ui/static/js/filter_old.js +734 -0
- accrete/contrib/ui/templates/ui/layout.html +7 -7
- accrete/contrib/ui/templates/ui/partials/filter.html +15 -9
- accrete/contrib/ui/templates/ui/partials/header.html +5 -3
- accrete/contrib/ui/templates/ui/partials/pagination_detail.html +2 -2
- accrete/contrib/ui/templates/ui/partials/pagination_list.html +2 -2
- accrete/contrib/ui/templates/ui/partials/table_field.html +1 -0
- accrete/contrib/ui/templates/ui/table.html +14 -12
- accrete/contrib/user/models.py +5 -0
- accrete/contrib/user/views.py +1 -1
- accrete/forms.py +7 -5
- accrete/models.py +21 -0
- accrete/queries.py +0 -1
- accrete/querystring.py +89 -0
- accrete/tenant.py +4 -0
- accrete/utils/dates.py +2 -1
- {accrete-0.0.23.dist-info → accrete-0.0.25.dist-info}/METADATA +1 -1
- {accrete-0.0.23.dist-info → accrete-0.0.25.dist-info}/RECORD +30 -29
- {accrete-0.0.23.dist-info → accrete-0.0.25.dist-info}/WHEEL +1 -1
- accrete/shortcuts.py +0 -8
- {accrete-0.0.23.dist-info → accrete-0.0.25.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
@charset "UTF-8";
|
2
2
|
#main {
|
3
|
-
padding-top:
|
3
|
+
padding-top: 2.5rem;
|
4
4
|
height: 100vh;
|
5
5
|
}
|
6
6
|
|
@@ -10,13 +10,17 @@ td > a {
|
|
10
10
|
}
|
11
11
|
|
12
12
|
td, th {
|
13
|
-
font-size: 0.
|
13
|
+
font-size: 0.85rem;
|
14
14
|
}
|
15
15
|
|
16
16
|
td {
|
17
17
|
vertical-align: middle !important;
|
18
18
|
}
|
19
19
|
|
20
|
+
.columns:not(:last-child) {
|
21
|
+
margin-bottom: 0 !important;
|
22
|
+
}
|
23
|
+
|
20
24
|
.side-panel {
|
21
25
|
min-width: 320px;
|
22
26
|
max-width: 320px;
|
@@ -74,28 +78,18 @@ select:focus {
|
|
74
78
|
border-radius: 4px;
|
75
79
|
}
|
76
80
|
|
77
|
-
.query-tag-
|
81
|
+
.query-tag-container {
|
78
82
|
display: flex;
|
79
83
|
flex-direction: column;
|
80
|
-
margin-bottom:
|
81
|
-
padding-bottom: 8px;
|
82
|
-
border-radius: 4px;
|
83
|
-
background-color: lightgray;
|
84
|
-
cursor: pointer;
|
85
|
-
}
|
86
|
-
|
87
|
-
.query-tag-group > .query-tag {
|
88
|
-
background-color: transparent;
|
89
|
-
margin: 0;
|
90
|
-
padding: 8px 8px 0 8px;
|
84
|
+
margin-bottom: 0.1em;
|
91
85
|
}
|
92
86
|
|
93
87
|
.query-tag {
|
94
88
|
display: flex;
|
95
89
|
flex-direction: row;
|
90
|
+
flex-grow: 1;
|
96
91
|
justify-content: space-between;
|
97
|
-
|
98
|
-
margin-bottom: 8px;
|
92
|
+
margin-bottom: 4px;
|
99
93
|
background-color: lightgray;
|
100
94
|
border-radius: 4px;
|
101
95
|
cursor: pointer;
|
@@ -103,12 +97,87 @@ select:focus {
|
|
103
97
|
|
104
98
|
.query-tag-text {
|
105
99
|
word-break: break-word;
|
100
|
+
flex-grow: 1;
|
101
|
+
margin-left: 0.5em;
|
102
|
+
padding-top: 8px;
|
103
|
+
padding-bottom: 8px;
|
104
|
+
}
|
105
|
+
|
106
|
+
.query-tag-delete {
|
107
|
+
display: flex;
|
108
|
+
align-items: center;
|
109
|
+
justify-content: center;
|
110
|
+
}
|
111
|
+
|
112
|
+
.query-tag-edit-icon {
|
113
|
+
background-color: transparent;
|
114
|
+
border: none;
|
115
|
+
cursor: pointer;
|
116
|
+
}
|
117
|
+
|
118
|
+
.query-tag-edit {
|
119
|
+
background-color: transparent;
|
120
|
+
border: none;
|
121
|
+
border-bottom-left-radius: 5px;
|
122
|
+
border-top-left-radius: 5px;
|
123
|
+
cursor: pointer;
|
124
|
+
display: flex;
|
125
|
+
align-items: center;
|
126
|
+
justify-content: center;
|
127
|
+
min-width: 40px;
|
128
|
+
max-width: 40px;
|
129
|
+
}
|
130
|
+
|
131
|
+
.query-tag-edit:hover {
|
132
|
+
background-color: #9da0a4;
|
133
|
+
}
|
134
|
+
|
135
|
+
.query-tag-operator {
|
136
|
+
width: fit-content;
|
137
|
+
}
|
138
|
+
|
139
|
+
.query-group-operator {
|
140
|
+
display: flex;
|
141
|
+
flex-direction: row;
|
142
|
+
align-items: center;
|
143
|
+
}
|
144
|
+
|
145
|
+
.query-group-operator * button {
|
146
|
+
margin-left: 20px;
|
147
|
+
background-color: transparent;
|
148
|
+
border: none;
|
149
|
+
cursor: pointer;
|
150
|
+
border-radius: 4px;
|
151
|
+
}
|
152
|
+
|
153
|
+
.query-group-selector {
|
154
|
+
display: flex;
|
155
|
+
align-items: center;
|
156
|
+
justify-content: center;
|
106
157
|
}
|
107
158
|
|
108
159
|
.selected-query-tag {
|
109
160
|
background-color: #48c78e !important;
|
110
161
|
}
|
111
162
|
|
163
|
+
.selected-query-group-selector {
|
164
|
+
outline: 3px solid #48c78e;
|
165
|
+
}
|
166
|
+
|
167
|
+
.selected-query-group:not(:first-child) {
|
168
|
+
border-left: 4px solid #48c78e !important;
|
169
|
+
padding-left: 7px !important;
|
170
|
+
}
|
171
|
+
|
172
|
+
.selected-query-edit {
|
173
|
+
background-color: #48c78e !important;
|
174
|
+
}
|
175
|
+
|
176
|
+
.query-group:not(:first-child) {
|
177
|
+
border-left: 2px solid grey;
|
178
|
+
padding-left: 9px;
|
179
|
+
}
|
180
|
+
|
112
181
|
.arrow:before {
|
113
182
|
content: "↳";
|
114
183
|
}
|
@@ -207,9 +276,8 @@ progress {
|
|
207
276
|
table.hax-box > thead {
|
208
277
|
display: none;
|
209
278
|
}
|
210
|
-
table.hax-box *
|
211
|
-
display: block;
|
212
|
-
padding-left: 0.5rem !important;
|
279
|
+
table.hax-box * span.responsive-heading {
|
280
|
+
display: inline-block;
|
213
281
|
}
|
214
282
|
}
|
215
283
|
/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */
|
@@ -226,7 +294,7 @@ progress {
|
|
226
294
|
border-radius: 4px;
|
227
295
|
box-shadow: none;
|
228
296
|
display: inline-flex;
|
229
|
-
font-size:
|
297
|
+
font-size: 0.9rem;
|
230
298
|
height: 2.5em;
|
231
299
|
justify-content: flex-start;
|
232
300
|
line-height: 1.5;
|
@@ -549,7 +617,7 @@ pre {
|
|
549
617
|
|
550
618
|
body {
|
551
619
|
color: hsl(0, 0%, 29%);
|
552
|
-
font-size:
|
620
|
+
font-size: 0.9rem;
|
553
621
|
font-weight: 400;
|
554
622
|
line-height: 1.5;
|
555
623
|
}
|
@@ -1662,7 +1730,7 @@ a.box:active {
|
|
1662
1730
|
border-radius: 2px;
|
1663
1731
|
}
|
1664
1732
|
.button.is-normal {
|
1665
|
-
font-size:
|
1733
|
+
font-size: 0.9rem;
|
1666
1734
|
}
|
1667
1735
|
.button.is-medium {
|
1668
1736
|
font-size: 1.25rem;
|
@@ -1785,7 +1853,7 @@ a.box:active {
|
|
1785
1853
|
font-size: 0.75rem;
|
1786
1854
|
}
|
1787
1855
|
.button.is-responsive.is-large {
|
1788
|
-
font-size:
|
1856
|
+
font-size: 0.9rem;
|
1789
1857
|
}
|
1790
1858
|
}
|
1791
1859
|
@media screen and (min-width: 769px) and (max-width: 1023px) {
|
@@ -1797,7 +1865,7 @@ a.box:active {
|
|
1797
1865
|
font-size: 0.75rem;
|
1798
1866
|
}
|
1799
1867
|
.button.is-responsive.is-medium {
|
1800
|
-
font-size:
|
1868
|
+
font-size: 0.9rem;
|
1801
1869
|
}
|
1802
1870
|
.button.is-responsive.is-large {
|
1803
1871
|
font-size: 1.25rem;
|
@@ -2001,7 +2069,7 @@ a.box:active {
|
|
2001
2069
|
font-size: 0.75rem;
|
2002
2070
|
}
|
2003
2071
|
.content.is-normal {
|
2004
|
-
font-size:
|
2072
|
+
font-size: 0.9rem;
|
2005
2073
|
}
|
2006
2074
|
.content.is-medium {
|
2007
2075
|
font-size: 1.25rem;
|
@@ -2263,7 +2331,7 @@ div.icon-text {
|
|
2263
2331
|
border: none;
|
2264
2332
|
border-radius: 9999px;
|
2265
2333
|
display: block;
|
2266
|
-
height:
|
2334
|
+
height: 0.9rem;
|
2267
2335
|
overflow: hidden;
|
2268
2336
|
padding: 0;
|
2269
2337
|
width: 100%;
|
@@ -2626,7 +2694,7 @@ div.icon-text {
|
|
2626
2694
|
margin-bottom: 1rem;
|
2627
2695
|
}
|
2628
2696
|
.tags.are-medium .tag:not(.is-normal):not(.is-large) {
|
2629
|
-
font-size:
|
2697
|
+
font-size: 0.9rem;
|
2630
2698
|
}
|
2631
2699
|
.tags.are-large .tag:not(.is-normal):not(.is-medium) {
|
2632
2700
|
font-size: 1.25rem;
|
@@ -2746,7 +2814,7 @@ div.icon-text {
|
|
2746
2814
|
font-size: 0.75rem;
|
2747
2815
|
}
|
2748
2816
|
.tag:not(body).is-medium {
|
2749
|
-
font-size:
|
2817
|
+
font-size: 0.9rem;
|
2750
2818
|
}
|
2751
2819
|
.tag:not(body).is-large {
|
2752
2820
|
font-size: 1.25rem;
|
@@ -2853,7 +2921,7 @@ a.tag:hover {
|
|
2853
2921
|
font-size: 1.25rem;
|
2854
2922
|
}
|
2855
2923
|
.title.is-6 {
|
2856
|
-
font-size:
|
2924
|
+
font-size: 0.9rem;
|
2857
2925
|
}
|
2858
2926
|
.title.is-7 {
|
2859
2927
|
font-size: 0.75rem;
|
@@ -2888,7 +2956,7 @@ a.tag:hover {
|
|
2888
2956
|
font-size: 1.25rem;
|
2889
2957
|
}
|
2890
2958
|
.subtitle.is-6 {
|
2891
|
-
font-size:
|
2959
|
+
font-size: 0.9rem;
|
2892
2960
|
}
|
2893
2961
|
.subtitle.is-7 {
|
2894
2962
|
font-size: 0.75rem;
|
@@ -3514,7 +3582,7 @@ a.tag:hover {
|
|
3514
3582
|
font-size: 0.75rem;
|
3515
3583
|
}
|
3516
3584
|
.file.is-normal {
|
3517
|
-
font-size:
|
3585
|
+
font-size: 0.9rem;
|
3518
3586
|
}
|
3519
3587
|
.file.is-medium {
|
3520
3588
|
font-size: 1.25rem;
|
@@ -3672,7 +3740,7 @@ a.tag:hover {
|
|
3672
3740
|
.label {
|
3673
3741
|
color: hsl(0, 0%, 21%);
|
3674
3742
|
display: block;
|
3675
|
-
font-size:
|
3743
|
+
font-size: 0.9rem;
|
3676
3744
|
font-weight: 700;
|
3677
3745
|
}
|
3678
3746
|
.label:not(:last-child) {
|
@@ -3893,7 +3961,7 @@ a.tag:hover {
|
|
3893
3961
|
.control {
|
3894
3962
|
box-sizing: border-box;
|
3895
3963
|
clear: both;
|
3896
|
-
font-size:
|
3964
|
+
font-size: 0.9rem;
|
3897
3965
|
position: relative;
|
3898
3966
|
text-align: inherit;
|
3899
3967
|
}
|
@@ -3958,7 +4026,7 @@ a.tag:hover {
|
|
3958
4026
|
|
3959
4027
|
/* Bulma Components */
|
3960
4028
|
.breadcrumb {
|
3961
|
-
font-size:
|
4029
|
+
font-size: 0.9rem;
|
3962
4030
|
white-space: nowrap;
|
3963
4031
|
}
|
3964
4032
|
.breadcrumb a {
|
@@ -4357,7 +4425,7 @@ button.dropdown-item.is-active {
|
|
4357
4425
|
}
|
4358
4426
|
}
|
4359
4427
|
.menu {
|
4360
|
-
font-size:
|
4428
|
+
font-size: 0.9rem;
|
4361
4429
|
}
|
4362
4430
|
.menu.is-small {
|
4363
4431
|
font-size: 0.75rem;
|
@@ -4408,7 +4476,7 @@ button.dropdown-item.is-active {
|
|
4408
4476
|
.message {
|
4409
4477
|
background-color: hsl(0, 0%, 96%);
|
4410
4478
|
border-radius: 4px;
|
4411
|
-
font-size:
|
4479
|
+
font-size: 0.9rem;
|
4412
4480
|
}
|
4413
4481
|
.message strong {
|
4414
4482
|
color: currentColor;
|
@@ -4668,7 +4736,7 @@ button.dropdown-item.is-active {
|
|
4668
4736
|
|
4669
4737
|
.navbar {
|
4670
4738
|
background-color: hsl(0, 0%, 100%);
|
4671
|
-
min-height:
|
4739
|
+
min-height: 2.5rem;
|
4672
4740
|
position: relative;
|
4673
4741
|
z-index: 30;
|
4674
4742
|
}
|
@@ -5235,7 +5303,7 @@ button.dropdown-item.is-active {
|
|
5235
5303
|
.navbar > .container {
|
5236
5304
|
align-items: stretch;
|
5237
5305
|
display: flex;
|
5238
|
-
min-height:
|
5306
|
+
min-height: 2.5rem;
|
5239
5307
|
width: 100%;
|
5240
5308
|
}
|
5241
5309
|
.navbar.has-shadow {
|
@@ -5259,11 +5327,11 @@ button.dropdown-item.is-active {
|
|
5259
5327
|
|
5260
5328
|
html.has-navbar-fixed-top,
|
5261
5329
|
body.has-navbar-fixed-top {
|
5262
|
-
padding-top:
|
5330
|
+
padding-top: 2.5rem;
|
5263
5331
|
}
|
5264
5332
|
html.has-navbar-fixed-bottom,
|
5265
5333
|
body.has-navbar-fixed-bottom {
|
5266
|
-
padding-bottom:
|
5334
|
+
padding-bottom: 2.5rem;
|
5267
5335
|
}
|
5268
5336
|
|
5269
5337
|
.navbar-brand,
|
@@ -5271,7 +5339,7 @@ body.has-navbar-fixed-bottom {
|
|
5271
5339
|
align-items: stretch;
|
5272
5340
|
display: flex;
|
5273
5341
|
flex-shrink: 0;
|
5274
|
-
min-height:
|
5342
|
+
min-height: 2.5rem;
|
5275
5343
|
}
|
5276
5344
|
|
5277
5345
|
.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover {
|
@@ -5294,9 +5362,9 @@ body.has-navbar-fixed-bottom {
|
|
5294
5362
|
border: none;
|
5295
5363
|
cursor: pointer;
|
5296
5364
|
display: block;
|
5297
|
-
height:
|
5365
|
+
height: 2.5rem;
|
5298
5366
|
position: relative;
|
5299
|
-
width:
|
5367
|
+
width: 2.5rem;
|
5300
5368
|
margin-left: auto;
|
5301
5369
|
}
|
5302
5370
|
.navbar-burger span {
|
@@ -5380,7 +5448,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
5380
5448
|
}
|
5381
5449
|
.navbar-item.is-tab {
|
5382
5450
|
border-bottom: 1px solid transparent;
|
5383
|
-
min-height:
|
5451
|
+
min-height: 2.5rem;
|
5384
5452
|
padding-bottom: calc(0.5rem - 1px);
|
5385
5453
|
}
|
5386
5454
|
.navbar-item.is-tab:focus, .navbar-item.is-tab:hover {
|
@@ -5465,16 +5533,16 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
5465
5533
|
}
|
5466
5534
|
.navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
|
5467
5535
|
-webkit-overflow-scrolling: touch;
|
5468
|
-
max-height: calc(100vh -
|
5536
|
+
max-height: calc(100vh - 2.5rem);
|
5469
5537
|
overflow: auto;
|
5470
5538
|
}
|
5471
5539
|
html.has-navbar-fixed-top-touch,
|
5472
5540
|
body.has-navbar-fixed-top-touch {
|
5473
|
-
padding-top:
|
5541
|
+
padding-top: 2.5rem;
|
5474
5542
|
}
|
5475
5543
|
html.has-navbar-fixed-bottom-touch,
|
5476
5544
|
body.has-navbar-fixed-bottom-touch {
|
5477
|
-
padding-bottom:
|
5545
|
+
padding-bottom: 2.5rem;
|
5478
5546
|
}
|
5479
5547
|
}
|
5480
5548
|
@media screen and (min-width: 1024px) {
|
@@ -5486,7 +5554,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
5486
5554
|
display: flex;
|
5487
5555
|
}
|
5488
5556
|
.navbar {
|
5489
|
-
min-height:
|
5557
|
+
min-height: 2.5rem;
|
5490
5558
|
}
|
5491
5559
|
.navbar.is-spaced {
|
5492
5560
|
padding: 1rem 2rem;
|
@@ -5631,19 +5699,19 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
5631
5699
|
}
|
5632
5700
|
html.has-navbar-fixed-top-desktop,
|
5633
5701
|
body.has-navbar-fixed-top-desktop {
|
5634
|
-
padding-top:
|
5702
|
+
padding-top: 2.5rem;
|
5635
5703
|
}
|
5636
5704
|
html.has-navbar-fixed-bottom-desktop,
|
5637
5705
|
body.has-navbar-fixed-bottom-desktop {
|
5638
|
-
padding-bottom:
|
5706
|
+
padding-bottom: 2.5rem;
|
5639
5707
|
}
|
5640
5708
|
html.has-spaced-navbar-fixed-top,
|
5641
5709
|
body.has-spaced-navbar-fixed-top {
|
5642
|
-
padding-top: 5rem;
|
5710
|
+
padding-top: 4.5rem;
|
5643
5711
|
}
|
5644
5712
|
html.has-spaced-navbar-fixed-bottom,
|
5645
5713
|
body.has-spaced-navbar-fixed-bottom {
|
5646
|
-
padding-bottom: 5rem;
|
5714
|
+
padding-bottom: 4.5rem;
|
5647
5715
|
}
|
5648
5716
|
a.navbar-item.is-active,
|
5649
5717
|
.navbar-link.is-active {
|
@@ -5658,11 +5726,11 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
5658
5726
|
}
|
5659
5727
|
}
|
5660
5728
|
.hero.is-fullheight-with-navbar {
|
5661
|
-
min-height: calc(100vh -
|
5729
|
+
min-height: calc(100vh - 2.5rem);
|
5662
5730
|
}
|
5663
5731
|
|
5664
5732
|
.pagination {
|
5665
|
-
font-size:
|
5733
|
+
font-size: 0.9rem;
|
5666
5734
|
margin: -0.25rem;
|
5667
5735
|
}
|
5668
5736
|
.pagination.is-small {
|
@@ -5827,7 +5895,7 @@ a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-i
|
|
5827
5895
|
.panel {
|
5828
5896
|
border-radius: 6px;
|
5829
5897
|
box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
|
5830
|
-
font-size:
|
5898
|
+
font-size: 0.9rem;
|
5831
5899
|
}
|
5832
5900
|
.panel:not(:last-child) {
|
5833
5901
|
margin-bottom: 1.5rem;
|
@@ -6030,7 +6098,7 @@ label.panel-block:hover {
|
|
6030
6098
|
-webkit-overflow-scrolling: touch;
|
6031
6099
|
align-items: stretch;
|
6032
6100
|
display: flex;
|
6033
|
-
font-size:
|
6101
|
+
font-size: 0.9rem;
|
6034
6102
|
justify-content: space-between;
|
6035
6103
|
overflow: hidden;
|
6036
6104
|
overflow-x: auto;
|
@@ -8991,7 +9059,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
8991
9059
|
}
|
8992
9060
|
|
8993
9061
|
.is-size-6 {
|
8994
|
-
font-size:
|
9062
|
+
font-size: 0.9rem !important;
|
8995
9063
|
}
|
8996
9064
|
|
8997
9065
|
.is-size-7 {
|
@@ -9015,7 +9083,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
9015
9083
|
font-size: 1.25rem !important;
|
9016
9084
|
}
|
9017
9085
|
.is-size-6-mobile {
|
9018
|
-
font-size:
|
9086
|
+
font-size: 0.9rem !important;
|
9019
9087
|
}
|
9020
9088
|
.is-size-7-mobile {
|
9021
9089
|
font-size: 0.75rem !important;
|
@@ -9038,7 +9106,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
9038
9106
|
font-size: 1.25rem !important;
|
9039
9107
|
}
|
9040
9108
|
.is-size-6-tablet {
|
9041
|
-
font-size:
|
9109
|
+
font-size: 0.9rem !important;
|
9042
9110
|
}
|
9043
9111
|
.is-size-7-tablet {
|
9044
9112
|
font-size: 0.75rem !important;
|
@@ -9061,7 +9129,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
9061
9129
|
font-size: 1.25rem !important;
|
9062
9130
|
}
|
9063
9131
|
.is-size-6-touch {
|
9064
|
-
font-size:
|
9132
|
+
font-size: 0.9rem !important;
|
9065
9133
|
}
|
9066
9134
|
.is-size-7-touch {
|
9067
9135
|
font-size: 0.75rem !important;
|
@@ -9084,7 +9152,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
9084
9152
|
font-size: 1.25rem !important;
|
9085
9153
|
}
|
9086
9154
|
.is-size-6-desktop {
|
9087
|
-
font-size:
|
9155
|
+
font-size: 0.9rem !important;
|
9088
9156
|
}
|
9089
9157
|
.is-size-7-desktop {
|
9090
9158
|
font-size: 0.75rem !important;
|
@@ -9107,7 +9175,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
9107
9175
|
font-size: 1.25rem !important;
|
9108
9176
|
}
|
9109
9177
|
.is-size-6-widescreen {
|
9110
|
-
font-size:
|
9178
|
+
font-size: 0.9rem !important;
|
9111
9179
|
}
|
9112
9180
|
.is-size-7-widescreen {
|
9113
9181
|
font-size: 0.75rem !important;
|
@@ -9130,7 +9198,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
|
9130
9198
|
font-size: 1.25rem !important;
|
9131
9199
|
}
|
9132
9200
|
.is-size-6-fullhd {
|
9133
|
-
font-size:
|
9201
|
+
font-size: 0.9rem !important;
|
9134
9202
|
}
|
9135
9203
|
.is-size-7-fullhd {
|
9136
9204
|
font-size: 0.75rem !important;
|