welcome_css 0.27 → 0.28
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/_welcome-ui-buttons.scss +37 -0
- data/app/assets/stylesheets/_welcome-ui-responsive.scss +22 -0
- data/app/assets/stylesheets/_welcome-ui-tables.scss +72 -0
- data/app/assets/stylesheets/_welcome-ui.scss +1 -1
- data/app/assets/stylesheets/welcome.css.scss +1 -1
- data/lib/welcome_css/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b149b52185d8f4873e173c05b26f7c2903c2f4a549467eef4c798b74a44dfe6c
|
|
4
|
+
data.tar.gz: 3c585a014a599bc09b0a74b3f531d86afc8a1ecf8165f758f28813be463e130c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a15811e869d77dd0147aaf95ffb6bd06b1d58abf656971dcec4552e7d5723b630b80acf4a535f294148e3fb5ad7f5dd36b2f2138343b1eab546a3e3902a49946
|
|
7
|
+
data.tar.gz: 37888260df98b872ddf8192d3b66d82d340bd62e336a20fcf4f79c7f621e17332bd181cf160a86e78e384088d38e8c6f0f184534bb9176b30584c9bb9c56ce45
|
|
@@ -94,6 +94,14 @@
|
|
|
94
94
|
border: 1px solid $ui_back;
|
|
95
95
|
font-family: 'gt-eesti-medium';
|
|
96
96
|
}
|
|
97
|
+
.btn-gray {
|
|
98
|
+
background-color: $ui_white;
|
|
99
|
+
font-size: $ui_font_normal;
|
|
100
|
+
color: $ui_back;
|
|
101
|
+
border: 1px solid $ui_back;
|
|
102
|
+
font-family: 'hk_groteskmedium';
|
|
103
|
+
font-weight: 400;
|
|
104
|
+
}
|
|
97
105
|
|
|
98
106
|
.btn-black {
|
|
99
107
|
background-color: $ui_back;
|
|
@@ -128,6 +136,35 @@
|
|
|
128
136
|
|
|
129
137
|
/* ========================================= */
|
|
130
138
|
|
|
139
|
+
.btn-duplicate {
|
|
140
|
+
padding: 6px 17px !important;
|
|
141
|
+
text-indent: -9999px;
|
|
142
|
+
background-image: image-url('icons/icn-duplicate.svg');
|
|
143
|
+
background-repeat: no-repeat;
|
|
144
|
+
background-size: 16px;
|
|
145
|
+
background-position: top 8px left 9px;
|
|
146
|
+
}
|
|
147
|
+
.btn-edit {
|
|
148
|
+
padding: 6px 17px !important;
|
|
149
|
+
text-indent: -9999px;
|
|
150
|
+
background-image: image-url('icons/icn-edit.svg');
|
|
151
|
+
background-repeat: no-repeat;
|
|
152
|
+
background-size: 16px;
|
|
153
|
+
background-position: top 8px left 9px;
|
|
154
|
+
background-color: $ui_white;
|
|
155
|
+
}
|
|
156
|
+
.btn-delete {
|
|
157
|
+
padding: 6px 17px !important;
|
|
158
|
+
text-indent: -9999px;
|
|
159
|
+
background-image: image-url('icons/icn-trash.svg');
|
|
160
|
+
background-repeat: no-repeat;
|
|
161
|
+
background-size: 16px;
|
|
162
|
+
background-position: top 8px left 9px;
|
|
163
|
+
background-color: $ui_white;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* ========================================= */
|
|
167
|
+
|
|
131
168
|
.ui-btn-status {
|
|
132
169
|
text-indent: -9999px;
|
|
133
170
|
border-radius: 50%;
|
|
@@ -224,6 +224,28 @@
|
|
|
224
224
|
.parcel-main-info .card .list-group-item {
|
|
225
225
|
width: 100%;
|
|
226
226
|
}
|
|
227
|
+
.am-content.ui-app-area .model-widget {
|
|
228
|
+
width: 100%;
|
|
229
|
+
}
|
|
230
|
+
.am-content.ui-app-area .page-head {
|
|
231
|
+
display: block;
|
|
232
|
+
float: left;
|
|
233
|
+
position: relative;
|
|
234
|
+
width: 100%;
|
|
235
|
+
margin-bottom: 30px;
|
|
236
|
+
}
|
|
237
|
+
.am-content.ui-app-area .page-head .float-right {
|
|
238
|
+
display: block;
|
|
239
|
+
width: 100%;
|
|
240
|
+
position: relative;
|
|
241
|
+
margin-top: 12px;
|
|
242
|
+
}
|
|
243
|
+
.models-area {
|
|
244
|
+
display: block;
|
|
245
|
+
float: left;
|
|
246
|
+
position: relative;
|
|
247
|
+
width: 100%;
|
|
248
|
+
}
|
|
227
249
|
|
|
228
250
|
/* =========================== */
|
|
229
251
|
|
|
@@ -1948,6 +1948,14 @@ table .ui-table-row {
|
|
|
1948
1948
|
|
|
1949
1949
|
/* =========================== */
|
|
1950
1950
|
|
|
1951
|
+
.am-content.ui-app-area .add-item-relative {
|
|
1952
|
+
display: block;
|
|
1953
|
+
position: relative;
|
|
1954
|
+
margin-top: 0px;
|
|
1955
|
+
margin-bottom: 30px;
|
|
1956
|
+
width: 100%;
|
|
1957
|
+
padding: 0 15px;
|
|
1958
|
+
}
|
|
1951
1959
|
.am-content.ui-app-area .add-item {
|
|
1952
1960
|
display: block;
|
|
1953
1961
|
position: absolute;
|
|
@@ -1959,6 +1967,7 @@ table .ui-table-row {
|
|
|
1959
1967
|
left: 0;
|
|
1960
1968
|
right: 0;
|
|
1961
1969
|
}
|
|
1970
|
+
.am-content.ui-app-area .add-item-relative .add-item-container,
|
|
1962
1971
|
.am-content.ui-app-area .add-item .add-item-container {
|
|
1963
1972
|
background-color: #F2F2F2;
|
|
1964
1973
|
border-radius: $ui-radius;
|
|
@@ -1970,20 +1979,83 @@ table .ui-table-row {
|
|
|
1970
1979
|
width: 100%;
|
|
1971
1980
|
box-shadow: 0 2px 6px 0 rgba(207,207,207,0.30);
|
|
1972
1981
|
}
|
|
1982
|
+
.am-content.ui-app-area .add-item-relative .add-item-container .add-text,
|
|
1983
|
+
.am-content.ui-app-area .add-item-relative .add-item-container .add-btn,
|
|
1973
1984
|
.am-content.ui-app-area .add-item .add-item-container .add-text,
|
|
1974
1985
|
.am-content.ui-app-area .add-item .add-item-container .add-btn {
|
|
1975
1986
|
display: block;
|
|
1976
1987
|
float: left;
|
|
1977
1988
|
position: relative;
|
|
1978
1989
|
}
|
|
1990
|
+
.am-content.ui-app-area .add-item-relative .add-item-container .add-text,
|
|
1979
1991
|
.am-content.ui-app-area .add-item .add-item-container .add-text {
|
|
1980
1992
|
font-weight: 600;
|
|
1981
1993
|
margin-top: 5px;
|
|
1982
1994
|
}
|
|
1995
|
+
.am-content.ui-app-area .add-item-relative .add-item-container .add-btn,
|
|
1983
1996
|
.am-content.ui-app-area .add-item .add-item-container .add-btn {
|
|
1984
1997
|
float: right;
|
|
1985
1998
|
}
|
|
1986
1999
|
|
|
2000
|
+
/* =========================== */
|
|
2001
|
+
|
|
2002
|
+
.am-content.ui-app-area .group-row {
|
|
2003
|
+
padding-bottom: 10px;
|
|
2004
|
+
border-bottom: 1px solid #dee2e6;
|
|
2005
|
+
margin-bottom: 15px;
|
|
2006
|
+
}
|
|
2007
|
+
.am-content.ui-app-area .form-buttons .btn.btn-outline-primary {
|
|
2008
|
+
border-color: $ui_back;
|
|
2009
|
+
color: $ui_back;
|
|
2010
|
+
margin-right: 12px;
|
|
2011
|
+
margin-bottom: 20px;
|
|
2012
|
+
margin-top: 6px;
|
|
2013
|
+
border-radius: $ui-radius;
|
|
2014
|
+
padding: 6px 17px !important;
|
|
2015
|
+
text-indent: -9999px;
|
|
2016
|
+
background-image: image-url('icons/icn-download.svg');
|
|
2017
|
+
background-repeat: no-repeat;
|
|
2018
|
+
background-size: 14px;
|
|
2019
|
+
background-position: top 9px left 9px;
|
|
2020
|
+
}
|
|
2021
|
+
.am-content.ui-app-area .form-buttons .btn.btn-outline-primary:hover {
|
|
2022
|
+
background-color: $ui_middlegray;
|
|
2023
|
+
}
|
|
2024
|
+
.am-content.ui-app-area .form-buttons .btn.btn-outline-danger {
|
|
2025
|
+
border-color: $ui_red;
|
|
2026
|
+
color: $ui_back;
|
|
2027
|
+
margin-right: 12px;
|
|
2028
|
+
margin-bottom: 20px;
|
|
2029
|
+
margin-top: 6px;
|
|
2030
|
+
border-radius: $ui-radius;
|
|
2031
|
+
padding: 6px 17px !important;
|
|
2032
|
+
text-indent: -9999px;
|
|
2033
|
+
background-image: image-url('icons/icn-trash.svg');
|
|
2034
|
+
background-repeat: no-repeat;
|
|
2035
|
+
background-size: 16px;
|
|
2036
|
+
background-position: top 8px left 9px;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
/* =========================== */
|
|
2040
|
+
|
|
2041
|
+
.am-content.ui-app-area .model-buttons {
|
|
2042
|
+
display: block;
|
|
2043
|
+
position: relative;
|
|
2044
|
+
width: 100%;
|
|
2045
|
+
}
|
|
2046
|
+
.am-content.ui-app-area .model-buttons .btns-left {
|
|
2047
|
+
display: block;
|
|
2048
|
+
float: left;
|
|
2049
|
+
position: relative;
|
|
2050
|
+
width: 35%;
|
|
2051
|
+
}
|
|
2052
|
+
.am-content.ui-app-area .model-buttons .btns-right {
|
|
2053
|
+
display: block;
|
|
2054
|
+
float: right;
|
|
2055
|
+
position: relative;
|
|
2056
|
+
width: 65%;
|
|
2057
|
+
text-align: right;
|
|
2058
|
+
}
|
|
1987
2059
|
|
|
1988
2060
|
|
|
1989
2061
|
|
|
@@ -27,7 +27,7 @@ h1, h2, h3, h4 {
|
|
|
27
27
|
$ui_back: #000000 !important;
|
|
28
28
|
$ui_white: #ffffff !important;
|
|
29
29
|
$ui_blue: #4A8FE7 !important;
|
|
30
|
-
$ui_red: #
|
|
30
|
+
$ui_red: #FF4949 !important;
|
|
31
31
|
$ui_green: #28A745 !important;
|
|
32
32
|
$ui_darkgray: #9C9C9C !important;
|
|
33
33
|
$ui_middlegray: #F2F2F2 !important;
|
data/lib/welcome_css/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: welcome_css
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.28'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jose Camacho
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-01-
|
|
11
|
+
date: 2022-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|