welcome_css 0.35 → 0.38
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/_fonts.scss +32 -0
- data/app/assets/stylesheets/_welcome-ui-buttons.scss +15 -2
- data/app/assets/stylesheets/_welcome-ui-menu-app.scss +3 -2
- data/app/assets/stylesheets/_welcome-ui-navbar.scss +49 -1
- data/app/assets/stylesheets/_welcome-ui-responsive.scss +43 -0
- data/app/assets/stylesheets/_welcome-ui-sidebar.scss +106 -84
- data/app/assets/stylesheets/_welcome-ui-tables.scss +187 -32
- data/app/assets/stylesheets/_welcome-ui-tabs.scss +8 -0
- data/app/assets/stylesheets/_welcome-ui-typography.scss +10 -0
- data/app/assets/stylesheets/_welcome-ui.scss +169 -12
- data/app/assets/stylesheets/_welcome_bootstrap_variables.scss +0 -1
- data/lib/welcome_css/version.rb +1 -1
- metadata +2 -2
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
/*background-color: $ui_middlegray;*/
|
|
27
27
|
margin-bottom: 30px;
|
|
28
28
|
width: 100%;
|
|
29
|
-
padding: 15px 0
|
|
29
|
+
padding: 15px 0;
|
|
30
30
|
}
|
|
31
31
|
.land-app .white-header {
|
|
32
32
|
border-bottom: none;
|
|
@@ -109,9 +109,10 @@ table .ui-table-row {
|
|
|
109
109
|
|
|
110
110
|
/* Table Cells */
|
|
111
111
|
.ui-table thead {
|
|
112
|
-
background-color: #edeff4
|
|
113
|
-
|
|
114
|
-
|
|
112
|
+
/*background-color: #edeff4;*/
|
|
113
|
+
background-color: $ui_white;
|
|
114
|
+
/*border-bottom: 1px solid #000;*/
|
|
115
|
+
font-family: 'nunitosans-semibold';
|
|
115
116
|
}
|
|
116
117
|
.ui-table table {
|
|
117
118
|
background-color: $ui_white;
|
|
@@ -122,10 +123,10 @@ table .ui-table-row {
|
|
|
122
123
|
}
|
|
123
124
|
.ui-table td {
|
|
124
125
|
padding: 26px 20px;
|
|
125
|
-
font-family: '
|
|
126
|
+
font-family: 'nunitosans-regular';
|
|
126
127
|
}
|
|
127
128
|
.ui-table td a {
|
|
128
|
-
font-family: '
|
|
129
|
+
font-family: 'nunitosans-semibold';
|
|
129
130
|
}
|
|
130
131
|
.ui-table .ui-sort {
|
|
131
132
|
color: $ui_back;
|
|
@@ -135,6 +136,13 @@ table .ui-table-row {
|
|
|
135
136
|
background-size: 8px;
|
|
136
137
|
background-position: left 10px top 6px;
|
|
137
138
|
}
|
|
139
|
+
.ui-table thead tr {
|
|
140
|
+
background-image: url('icons/icn-dot.svg');
|
|
141
|
+
background-repeat: repeat-x;
|
|
142
|
+
background-position: bottom 1px left;
|
|
143
|
+
background-size: 1px;
|
|
144
|
+
}
|
|
145
|
+
|
|
138
146
|
.ui-app-area .table thead th {
|
|
139
147
|
border-bottom: transparent;
|
|
140
148
|
}
|
|
@@ -147,10 +155,26 @@ table .ui-table-row {
|
|
|
147
155
|
.ui-toptable .col-lg-6:first-child {
|
|
148
156
|
align-self: flex-end;
|
|
149
157
|
}
|
|
158
|
+
.ui-toptable h4 {
|
|
159
|
+
font-size: 18px !important;
|
|
160
|
+
}
|
|
161
|
+
.ui-table table thead .sort,
|
|
162
|
+
.ui-table .table thead .sort {
|
|
163
|
+
background-image: image-url('icons/icn-sort.svg');
|
|
164
|
+
background-repeat: no-repeat;
|
|
165
|
+
background-size: 8px;
|
|
166
|
+
background-position: left 14px top 22px;
|
|
167
|
+
padding-left: 28px;
|
|
168
|
+
}
|
|
169
|
+
.ui-table table thead .sort a,
|
|
170
|
+
.ui-table .table thead .sort a {
|
|
171
|
+
color: #000
|
|
172
|
+
}
|
|
150
173
|
|
|
151
174
|
/* =========================== */
|
|
152
175
|
|
|
153
|
-
.am-content.ui-app-area .block
|
|
176
|
+
.am-content.ui-app-area .block,
|
|
177
|
+
.am-wrapper.main-app .block {
|
|
154
178
|
display: block;
|
|
155
179
|
float: left;
|
|
156
180
|
position: relative;
|
|
@@ -163,6 +187,7 @@ table .ui-table-row {
|
|
|
163
187
|
}
|
|
164
188
|
.ui-app-area .dropdown .btn-group {
|
|
165
189
|
display: block;
|
|
190
|
+
padding: 3px 6px 0px 6px;
|
|
166
191
|
}
|
|
167
192
|
.ui-app-area .dropdown .btn-group .btn {
|
|
168
193
|
width: 100%;
|
|
@@ -211,9 +236,23 @@ table .ui-table-row {
|
|
|
211
236
|
padding-left: 15px;
|
|
212
237
|
}
|
|
213
238
|
|
|
239
|
+
.ui-app-area .dropdown .btn-group a,
|
|
240
|
+
.ui-app-area .dropdown .btn-group button {
|
|
241
|
+
border-radius: 6px !important;
|
|
242
|
+
margin-bottom: 3px;
|
|
243
|
+
}
|
|
244
|
+
|
|
214
245
|
/* =========================== */
|
|
215
246
|
/* Table Area Titles */
|
|
216
247
|
|
|
248
|
+
.land-app .view-header h1,
|
|
249
|
+
.land-app .white-header h1 {
|
|
250
|
+
font-size: $header-title;
|
|
251
|
+
}
|
|
252
|
+
.land-app .view-header h2,
|
|
253
|
+
.land-app .white-header h2 {
|
|
254
|
+
font-size: $header-title;
|
|
255
|
+
}
|
|
217
256
|
.land-app .view-header h3,
|
|
218
257
|
.land-app .white-header h3 {
|
|
219
258
|
font-size: $header-title;
|
|
@@ -532,7 +571,7 @@ table .ui-table-row {
|
|
|
532
571
|
border: 1px solid #DDDDDD;
|
|
533
572
|
padding: 10px;
|
|
534
573
|
}
|
|
535
|
-
|
|
574
|
+
|
|
536
575
|
.ui-app-area form #search:focus {
|
|
537
576
|
box-shadow: 0 0 5px $ui_blue;
|
|
538
577
|
border: 1px solid $ui_blue;
|
|
@@ -555,13 +594,24 @@ table .ui-table-row {
|
|
|
555
594
|
.am-left-sidebar.col-12.col-lg-2.p-0.menu-app {
|
|
556
595
|
display: block;
|
|
557
596
|
float: left;
|
|
558
|
-
position:
|
|
597
|
+
position: absolute;
|
|
598
|
+
}
|
|
599
|
+
.am-left-sidebar:before {
|
|
600
|
+
box-shadow: 0 0 15px rgba(174,174,174,0.15);
|
|
601
|
+
border-right: 1px solid #D9D9D9;
|
|
602
|
+
background-color: #fff !important;
|
|
559
603
|
}
|
|
560
604
|
.am-content.col-12.col-lg-10.mx-auto.ui-app-area {
|
|
561
605
|
display: block;
|
|
562
606
|
float: right;
|
|
563
607
|
position: relative;
|
|
564
608
|
}
|
|
609
|
+
.am-wrapper.main-app .ui-app-area .main-content {
|
|
610
|
+
display: block;
|
|
611
|
+
float: left;
|
|
612
|
+
position: relative;
|
|
613
|
+
width: 100%;
|
|
614
|
+
}
|
|
565
615
|
.table-striped tbody tr:nth-of-type(odd), .table-striped tbody tr {
|
|
566
616
|
background-color:#fff;
|
|
567
617
|
}
|
|
@@ -761,6 +811,10 @@ table .ui-table-row {
|
|
|
761
811
|
.am-content.ui-app-area .table-widget {
|
|
762
812
|
background-color: $ui_white;
|
|
763
813
|
}
|
|
814
|
+
.am-content.ui-app-area table.no-ui {
|
|
815
|
+
background-color: transparent;
|
|
816
|
+
box-shadow: none;
|
|
817
|
+
}
|
|
764
818
|
|
|
765
819
|
/* =========================== */
|
|
766
820
|
|
|
@@ -845,7 +899,7 @@ table .ui-table-row {
|
|
|
845
899
|
border-bottom: 1px solid #d9d9d9;
|
|
846
900
|
margin-left: 0px;
|
|
847
901
|
margin-right: 0px;
|
|
848
|
-
padding: 20px 0 !important;
|
|
902
|
+
padding: 10px 0 20px 0 !important;
|
|
849
903
|
}
|
|
850
904
|
.main-app .ui-app-area .nav-tabs .nav-link {
|
|
851
905
|
padding: 0.5rem 0;
|
|
@@ -1354,7 +1408,7 @@ table .ui-table-row {
|
|
|
1354
1408
|
margin: -4px 0 0 -6px;
|
|
1355
1409
|
}
|
|
1356
1410
|
.search-area button img {
|
|
1357
|
-
width: -moz-available;
|
|
1411
|
+
width: -moz-available;
|
|
1358
1412
|
width: -webkit-fill-available;
|
|
1359
1413
|
width: fill-available;
|
|
1360
1414
|
max-width: 35px;
|
|
@@ -1388,13 +1442,15 @@ table .ui-table-row {
|
|
|
1388
1442
|
float: left;
|
|
1389
1443
|
position: relative;
|
|
1390
1444
|
width: 100%;
|
|
1391
|
-
background-color: $ui_white
|
|
1445
|
+
/*background-color: $ui_white;*/
|
|
1446
|
+
background-color: #F9FAFC;
|
|
1392
1447
|
padding: 18px 20px 0px 20px;
|
|
1393
1448
|
margin-bottom: 30px;
|
|
1449
|
+
border: 1px solid #D8D9DF;
|
|
1394
1450
|
border-radius: $ui_radius;
|
|
1395
|
-
|
|
1451
|
+
/*-webkit-box-shadow: 1px 1px 12px 0px rgba(141,141,141,0.15);
|
|
1396
1452
|
-moz-box-shadow: 1px 1px 12px 0px rgba(141,141,141,0.15);
|
|
1397
|
-
box-shadow: 1px 1px 12px 0px rgba(141,141,141,0.15)
|
|
1453
|
+
box-shadow: 1px 1px 12px 0px rgba(141,141,141,0.15);*/
|
|
1398
1454
|
}
|
|
1399
1455
|
.land-app .ui-app-area .full-block .full-block-content {
|
|
1400
1456
|
display: block;
|
|
@@ -1411,7 +1467,7 @@ table .ui-table-row {
|
|
|
1411
1467
|
.land-app .ui-app-area .full-block .full-block-content .w-50,
|
|
1412
1468
|
.land-app .ui-app-area .full-block .full-block-content .w-75,
|
|
1413
1469
|
.land-app .ui-app-area .full-block .full-block-content .w-80 {
|
|
1414
|
-
padding-right: 5px;
|
|
1470
|
+
padding-right: 5px;
|
|
1415
1471
|
}
|
|
1416
1472
|
.land-app .ui-app-area .full-block .full-block-content:last-child {
|
|
1417
1473
|
margin-bottom: 0px;
|
|
@@ -1575,6 +1631,48 @@ table .ui-table-row {
|
|
|
1575
1631
|
|
|
1576
1632
|
/* =========================== */
|
|
1577
1633
|
|
|
1634
|
+
.ui-app-area .table-item {
|
|
1635
|
+
background-color: $ui_white;
|
|
1636
|
+
padding: 20px 15px;
|
|
1637
|
+
|
|
1638
|
+
box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
|
|
1639
|
+
border-radius: 4px;
|
|
1640
|
+
margin-bottom: 30px;
|
|
1641
|
+
|
|
1642
|
+
width: 24%;
|
|
1643
|
+
margin-left: 0.5%;
|
|
1644
|
+
margin-right: 0.5%;
|
|
1645
|
+
}
|
|
1646
|
+
.ui-app-area .table-item td {
|
|
1647
|
+
display: block;
|
|
1648
|
+
float: left;
|
|
1649
|
+
position: relative;
|
|
1650
|
+
width: 100%;
|
|
1651
|
+
}
|
|
1652
|
+
.ui-app-area .table-item .sort {
|
|
1653
|
+
z-index: 9999;
|
|
1654
|
+
}
|
|
1655
|
+
.ui-app-area .table-item .sort img {
|
|
1656
|
+
display: block;
|
|
1657
|
+
position: absolute;
|
|
1658
|
+
right: 0;
|
|
1659
|
+
top: 0;
|
|
1660
|
+
}
|
|
1661
|
+
.ui-app-area .table-item .sort img:hover {
|
|
1662
|
+
cursor: pointer;
|
|
1663
|
+
}
|
|
1664
|
+
.ui-app-area .table-item .status {
|
|
1665
|
+
font-size: 11px;
|
|
1666
|
+
border-radius: 4px;
|
|
1667
|
+
border: 1px solid #000;
|
|
1668
|
+
display: block;
|
|
1669
|
+
float: left;
|
|
1670
|
+
position: relative;
|
|
1671
|
+
padding: 2px 6px;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
/* =========================== */
|
|
1675
|
+
|
|
1578
1676
|
.land-app .ui-app-area .dropzone {
|
|
1579
1677
|
background-color: #fff;
|
|
1580
1678
|
}
|
|
@@ -1705,6 +1803,10 @@ table .ui-table-row {
|
|
|
1705
1803
|
left: 0 !important;
|
|
1706
1804
|
}
|
|
1707
1805
|
|
|
1806
|
+
.am-content.ui-app-area .dropdown.dropleft:hover > .dropdown-menu {
|
|
1807
|
+
right: 0px !important;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1708
1810
|
/* =========================== */
|
|
1709
1811
|
/* Breadcrumbs - UI adaptations */
|
|
1710
1812
|
|
|
@@ -1922,7 +2024,8 @@ table .ui-table-row {
|
|
|
1922
2024
|
-moz-box-shadow: 1px 1px 12px 0px rgba(141,141,141,0.25);
|
|
1923
2025
|
margin-bottom: 4px;
|
|
1924
2026
|
width: 32%;
|
|
1925
|
-
margin-top:
|
|
2027
|
+
margin-top: 0px;
|
|
2028
|
+
margin-bottom: 30px;
|
|
1926
2029
|
float: left;
|
|
1927
2030
|
}
|
|
1928
2031
|
.am-content.ui-app-area .model-widget:nth-child(odd) {
|
|
@@ -1942,6 +2045,12 @@ table .ui-table-row {
|
|
|
1942
2045
|
width: 100%;
|
|
1943
2046
|
margin-bottom: 12px;
|
|
1944
2047
|
}
|
|
2048
|
+
.am-content.ui-app-area .model-widget .model-info .sort img,
|
|
2049
|
+
.am-content.ui-app-area .floor-widget .sort img {
|
|
2050
|
+
position: absolute;
|
|
2051
|
+
right: 2px;
|
|
2052
|
+
top: 0;
|
|
2053
|
+
}
|
|
1945
2054
|
.am-content.ui-app-area .model-widget .model-info:last-child {
|
|
1946
2055
|
margin-bottom: 0px;
|
|
1947
2056
|
}
|
|
@@ -1958,10 +2067,12 @@ table .ui-table-row {
|
|
|
1958
2067
|
margin-left: 0;
|
|
1959
2068
|
margin-right: 4px;
|
|
1960
2069
|
top: 0;
|
|
1961
|
-
border: 1px solid #979797;
|
|
1962
2070
|
border-radius: $ui-radius;
|
|
1963
|
-
padding: 1px 6px;
|
|
1964
2071
|
font-size: 12px;
|
|
2072
|
+
font-weight: bold;
|
|
2073
|
+
}
|
|
2074
|
+
.am-content.ui-app-area .model-widget .model-info .active-status h6 {
|
|
2075
|
+
font-weight: 600;
|
|
1965
2076
|
}
|
|
1966
2077
|
.am-content.ui-app-area .model-widget .model-info .active-status .active {
|
|
1967
2078
|
background-image: image-url('icons/icn-active.svg');
|
|
@@ -1970,6 +2081,16 @@ table .ui-table-row {
|
|
|
1970
2081
|
background-position: top 5px left 0px;
|
|
1971
2082
|
padding-left: 12px;
|
|
1972
2083
|
}
|
|
2084
|
+
.am-content.ui-app-area .model-widget .model-info .active-status .status {
|
|
2085
|
+
display: none;
|
|
2086
|
+
}
|
|
2087
|
+
.am-content.ui-app-area .model-widget .model-info .active-status .inactive {
|
|
2088
|
+
background-image: image-url('icons/icn-inactive.svg');
|
|
2089
|
+
background-repeat: no-repeat;
|
|
2090
|
+
background-size: 8px;
|
|
2091
|
+
background-position: top 5px left 0px;
|
|
2092
|
+
padding-left: 12px;
|
|
2093
|
+
}
|
|
1973
2094
|
.am-content.ui-app-area .model-widget .model-info .model-title {
|
|
1974
2095
|
display: block;
|
|
1975
2096
|
float: left;
|
|
@@ -1977,10 +2098,10 @@ table .ui-table-row {
|
|
|
1977
2098
|
}
|
|
1978
2099
|
.am-content.ui-app-area .model-widget .model-info .model-studio-status {
|
|
1979
2100
|
display: block;
|
|
1980
|
-
float:
|
|
2101
|
+
float: left;
|
|
1981
2102
|
}
|
|
1982
2103
|
.am-content.ui-app-area .model-widget .model-info .model-studio-status .model-studio-active {
|
|
1983
|
-
float:
|
|
2104
|
+
float: left;
|
|
1984
2105
|
font-size: 12px;
|
|
1985
2106
|
border: 1px solid #979797;
|
|
1986
2107
|
border-radius: $ui-radius;
|
|
@@ -1997,7 +2118,7 @@ table .ui-table-row {
|
|
|
1997
2118
|
display: inline-block;
|
|
1998
2119
|
width: 8px;
|
|
1999
2120
|
height: 8px;
|
|
2000
|
-
background-color: #
|
|
2121
|
+
background-color: #4A4A4A;
|
|
2001
2122
|
border-radius: 50%;
|
|
2002
2123
|
}
|
|
2003
2124
|
.am-content.ui-app-area .model-widget .model-img img {
|
|
@@ -2011,13 +2132,26 @@ table .ui-table-row {
|
|
|
2011
2132
|
|
|
2012
2133
|
/* =========================== */
|
|
2013
2134
|
|
|
2135
|
+
.am-content.ui-app-area .block-pill {
|
|
2136
|
+
float: left;
|
|
2137
|
+
position: relative;
|
|
2138
|
+
width: 100%;
|
|
2139
|
+
background-color: #F6F8FA;
|
|
2140
|
+
border-radius: 4px;
|
|
2141
|
+
padding: 8px 15px 12px 15px;
|
|
2142
|
+
margin-bottom: 20px !important;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
/* =========================== */
|
|
2146
|
+
|
|
2014
2147
|
.am-content.ui-app-area .main-content.edit .card-body {
|
|
2015
2148
|
padding: 20px 15px;
|
|
2016
2149
|
}
|
|
2017
2150
|
|
|
2018
2151
|
/* =========================== */
|
|
2019
2152
|
|
|
2020
|
-
.am-content.ui-app-area .floor-widget
|
|
2153
|
+
.am-content.ui-app-area .floor-widget,
|
|
2154
|
+
.am-content.ui-app-area .block-widget {
|
|
2021
2155
|
display: block;
|
|
2022
2156
|
float: left;
|
|
2023
2157
|
position: relative;
|
|
@@ -2030,30 +2164,35 @@ table .ui-table-row {
|
|
|
2030
2164
|
margin-bottom: 30px;
|
|
2031
2165
|
width: 100%;
|
|
2032
2166
|
}
|
|
2033
|
-
.am-content.ui-app-area .floor-widget .floor-container
|
|
2167
|
+
.am-content.ui-app-area .floor-widget .floor-container,
|
|
2168
|
+
.am-content.ui-app-area .block-widget .blocks-container {
|
|
2034
2169
|
display: block;
|
|
2035
2170
|
float: left;
|
|
2036
2171
|
position: relative;
|
|
2037
2172
|
width: 100%;
|
|
2038
2173
|
}
|
|
2039
|
-
.am-content.ui-app-area .floor-widget .floor-container h3
|
|
2174
|
+
.am-content.ui-app-area .floor-widget .floor-container h3,
|
|
2175
|
+
.am-content.ui-app-area .block-widget .blocks-container h3 {
|
|
2040
2176
|
font-size: 24px;
|
|
2041
2177
|
border-left: 4px solid #D9DBE5;
|
|
2042
2178
|
padding-left: 15px;
|
|
2043
2179
|
}
|
|
2044
2180
|
.am-content.ui-app-area .floor-widget .floor-container .floor_title_add-edit,
|
|
2045
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_areas
|
|
2181
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas,
|
|
2182
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas {
|
|
2046
2183
|
display: block;
|
|
2047
2184
|
float: left;
|
|
2048
2185
|
position: relative;
|
|
2049
2186
|
width: 100%;
|
|
2050
2187
|
}
|
|
2051
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_title_add-edit
|
|
2188
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_title_add-edit,
|
|
2189
|
+
.am-content.ui-app-area .block-widget .blocks-container .block_title_add-edit {
|
|
2052
2190
|
padding-bottom: 15px;
|
|
2053
2191
|
border-bottom: 1px solid #D9D9D9;
|
|
2054
2192
|
margin-bottom: 25px;
|
|
2055
2193
|
}
|
|
2056
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item
|
|
2194
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item,
|
|
2195
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item {
|
|
2057
2196
|
display: block;
|
|
2058
2197
|
float: left;
|
|
2059
2198
|
position: relative;
|
|
@@ -2061,7 +2200,8 @@ table .ui-table-row {
|
|
|
2061
2200
|
width: 20%;
|
|
2062
2201
|
padding: 0 5px;
|
|
2063
2202
|
}
|
|
2064
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item
|
|
2203
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item,
|
|
2204
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item {
|
|
2065
2205
|
display: block;
|
|
2066
2206
|
float: left;
|
|
2067
2207
|
position: relative;
|
|
@@ -2071,10 +2211,12 @@ table .ui-table-row {
|
|
|
2071
2211
|
box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
|
|
2072
2212
|
border-radius: $ui-radius;
|
|
2073
2213
|
}
|
|
2074
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item:hover
|
|
2214
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item:hover,
|
|
2215
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item:hover {
|
|
2075
2216
|
box-shadow: 0 0 14px 0 rgba(207,207,207,0.50);
|
|
2076
2217
|
}
|
|
2077
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a
|
|
2218
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a,
|
|
2219
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item a {
|
|
2078
2220
|
display: flex;
|
|
2079
2221
|
width: 100%;
|
|
2080
2222
|
height: 70px;
|
|
@@ -2083,7 +2225,8 @@ table .ui-table-row {
|
|
|
2083
2225
|
color: #000;
|
|
2084
2226
|
align-items: center;
|
|
2085
2227
|
}
|
|
2086
|
-
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a:hover
|
|
2228
|
+
.am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a:hover,
|
|
2229
|
+
.am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item a:hover {
|
|
2087
2230
|
text-decoration: none;
|
|
2088
2231
|
}
|
|
2089
2232
|
|
|
@@ -2091,6 +2234,18 @@ table .ui-table-row {
|
|
|
2091
2234
|
padding-right: 10px;
|
|
2092
2235
|
}
|
|
2093
2236
|
|
|
2237
|
+
.am-content.ui-app-area .full-tabs {
|
|
2238
|
+
margin-top: 30px;
|
|
2239
|
+
}
|
|
2240
|
+
.am-content.ui-app-area .full-tabs .nav-tabs {
|
|
2241
|
+
border-bottom: 1px solid #D8DBE5 !important;
|
|
2242
|
+
}
|
|
2243
|
+
.am-content.ui-app-area .full-tabs .nav-tabs .nav-link {
|
|
2244
|
+
padding-left: 22px;
|
|
2245
|
+
padding-right: 22px;
|
|
2246
|
+
color: #000;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2094
2249
|
/* =========================== */
|
|
2095
2250
|
|
|
2096
2251
|
.am-content.ui-app-area .add-block {
|
|
@@ -2330,7 +2485,7 @@ table .ui-table-row {
|
|
|
2330
2485
|
float: left;
|
|
2331
2486
|
position: relative;
|
|
2332
2487
|
width: 100%;
|
|
2333
|
-
padding:
|
|
2488
|
+
padding: 15px 20px 8px 20px;
|
|
2334
2489
|
background-color: $ui_white;
|
|
2335
2490
|
border: 1px solid #d9d9d9;
|
|
2336
2491
|
border-radius: $ui-radius;
|
|
@@ -38,4 +38,12 @@
|
|
|
38
38
|
}
|
|
39
39
|
.am-content.ui-app-area .tab-content .tab-pane .nav-tabs-dates.active {
|
|
40
40
|
border: 1px solid #007bff;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ui-app-area .tab-pill.active,
|
|
44
|
+
.ui-app-area .tab-pill:hover {
|
|
45
|
+
color: #000;
|
|
46
|
+
background-color: #edeff4;
|
|
47
|
+
border: 1px solid #edeff4;
|
|
48
|
+
border-radius: 4px !important;
|
|
41
49
|
}
|
|
@@ -16,6 +16,16 @@
|
|
|
16
16
|
asset-url('HK-Grotesk/Bold/HKGrotesk-Bold.ttf') format('truetype');
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: 'nunitosans-bold';
|
|
21
|
+
src: asset-url('nunito/bold/nunitosans-bold.woff2') format('woff2'),
|
|
22
|
+
asset-url('nunito/bold/nunitosans-bold.woff') format('woff'),
|
|
23
|
+
asset-url('nunito/bold/nunitosans-bold.ttf') format('truetype'),
|
|
24
|
+
asset-url('nunito/bold/nunitosans-bold.svg#nunitosans-bold') format('svg');
|
|
25
|
+
font-weight: normal;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
}
|
|
28
|
+
|
|
19
29
|
/* ================================ */
|
|
20
30
|
|
|
21
31
|
@font-face {
|