killbill-assets-ui 0.1.5 → 1.0.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/assets/bootstrap.min.js +7 -0
- data/app/assets/stylesheets/assets/bootstrap.min.css +7 -0
- data/app/assets/stylesheets/assets/jquery_datatables.css +6 -7
- data/app/assets/stylesheets/assets/theme.css +147 -0
- data/lib/assets/version.rb +1 -1
- metadata +5 -4
- data/app/assets/javascripts/assets/bootstrap.js +0 -2377
- data/app/assets/stylesheets/assets/bootstrap.css +0 -6757
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--bs-primary: #1570ef; /* your custom primary color */
|
|
5
|
+
--bs-secondary: #777777;
|
|
6
|
+
--bs-success: #4caf50;
|
|
7
|
+
--bs-danger: #f44336;
|
|
8
|
+
--bs-warning: #ffc107;
|
|
9
|
+
--bs-info: #00bcd4;
|
|
10
|
+
--bs-light: #f1f1f1;
|
|
11
|
+
--bs-dark: #212121;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.btn-primary {
|
|
15
|
+
background-color: #1570ef !important;
|
|
16
|
+
border-color: #1570ef !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.text-primary {
|
|
20
|
+
color: #1570ef !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.bg-primary {
|
|
24
|
+
background-color: #1570ef !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.text-black-900 {
|
|
28
|
+
color: #181d27 !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.text-black-700 {
|
|
32
|
+
color: #414651 !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.text-tertiary {
|
|
36
|
+
color: #535862 !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.text-quaternary {
|
|
40
|
+
color: #717680 !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.fw-500 {
|
|
44
|
+
font-weight: 500 !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.fw-600 {
|
|
48
|
+
font-weight: 600 !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.radius-md {
|
|
52
|
+
border-radius: 0.375rem !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.fs-7 {
|
|
56
|
+
font-size: 0.875rem !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.custom-hover:hover {
|
|
60
|
+
opacity: 0.6;
|
|
61
|
+
transition: opacity 0.2s ease-in-out;
|
|
62
|
+
-webkit-transition: opacity 0.2s ease-in-out;
|
|
63
|
+
-moz-transition: opacity 0.2s ease-in-out;
|
|
64
|
+
-o-transition: opacity 0.2s ease-in-out;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.flex {
|
|
69
|
+
display: flex !important;
|
|
70
|
+
}
|
|
71
|
+
.flex-column {
|
|
72
|
+
flex-direction: column !important;
|
|
73
|
+
}
|
|
74
|
+
.flex-row {
|
|
75
|
+
flex-direction: row !important;
|
|
76
|
+
}
|
|
77
|
+
.justify-content-between {
|
|
78
|
+
justify-content: space-between !important;
|
|
79
|
+
}
|
|
80
|
+
.justify-center {
|
|
81
|
+
justify-content: center !important;
|
|
82
|
+
}
|
|
83
|
+
.items-center {
|
|
84
|
+
align-items: center !important;
|
|
85
|
+
}
|
|
86
|
+
.align-items-start {
|
|
87
|
+
align-items: flex-start !important;
|
|
88
|
+
}
|
|
89
|
+
.align-items-end {
|
|
90
|
+
align-items: flex-end !important;
|
|
91
|
+
}
|
|
92
|
+
.text-center {
|
|
93
|
+
text-align: center !important;
|
|
94
|
+
}
|
|
95
|
+
.text-end {
|
|
96
|
+
text-align: end !important;
|
|
97
|
+
}
|
|
98
|
+
.text-start {
|
|
99
|
+
text-align: start !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.btn-check:focus + .btn-primary,
|
|
103
|
+
.btn-primary:focus {
|
|
104
|
+
box-shadow: none !important;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.border-secondary {
|
|
108
|
+
border-color: #e9eaeb !important;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.kaui-button {
|
|
112
|
+
padding: 6px 10px;
|
|
113
|
+
align-items: center;
|
|
114
|
+
display: flex;
|
|
115
|
+
max-height: max-content;
|
|
116
|
+
font-size: 14px;
|
|
117
|
+
font-weight: 500;
|
|
118
|
+
line-height: 20px;
|
|
119
|
+
color: #414651 !important;
|
|
120
|
+
border: 1px solid #d5d7da !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.kaui-button:hover {
|
|
124
|
+
background-color: #fff !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.kaui-dropdown {
|
|
128
|
+
background-color: #1570ef !important;
|
|
129
|
+
padding: 6px 10px;
|
|
130
|
+
align-items: center;
|
|
131
|
+
display: flex;
|
|
132
|
+
max-height: max-content;
|
|
133
|
+
font-size: 14px;
|
|
134
|
+
font-weight: 500;
|
|
135
|
+
line-height: 20px;
|
|
136
|
+
color: #fff !important;
|
|
137
|
+
}
|
|
138
|
+
.kaui-dropdown:hover {
|
|
139
|
+
background-color: #1570ef !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.kaui-button:focus,
|
|
143
|
+
.kaui-dropdown:focus {
|
|
144
|
+
outline: none !important;
|
|
145
|
+
box-shadow: none !important;
|
|
146
|
+
border-color: inherit !important;
|
|
147
|
+
}
|
data/lib/assets/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: killbill-assets-ui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kill Bill core team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bootstrap-datepicker-rails
|
|
@@ -81,7 +81,7 @@ files:
|
|
|
81
81
|
- app/assets/fonts/glyphicons-halflings-regular.woff
|
|
82
82
|
- app/assets/fonts/glyphicons-halflings-regular.woff2
|
|
83
83
|
- app/assets/javascripts/application.js
|
|
84
|
-
- app/assets/javascripts/assets/bootstrap.js
|
|
84
|
+
- app/assets/javascripts/assets/bootstrap.min.js
|
|
85
85
|
- app/assets/javascripts/assets/common.js
|
|
86
86
|
- app/assets/javascripts/assets/dataTables.colReorder.min.js
|
|
87
87
|
- app/assets/javascripts/assets/jquery-ui.min.js
|
|
@@ -90,7 +90,7 @@ files:
|
|
|
90
90
|
- app/assets/javascripts/assets/killbill_date_range.js
|
|
91
91
|
- app/assets/javascripts/assets/spin.js
|
|
92
92
|
- app/assets/stylesheets/application.css
|
|
93
|
-
- app/assets/stylesheets/assets/bootstrap.css
|
|
93
|
+
- app/assets/stylesheets/assets/bootstrap.min.css
|
|
94
94
|
- app/assets/stylesheets/assets/bootstrap_and_overrides.css
|
|
95
95
|
- app/assets/stylesheets/assets/common.css
|
|
96
96
|
- app/assets/stylesheets/assets/dataTables.colReorder.min.css
|
|
@@ -98,6 +98,7 @@ files:
|
|
|
98
98
|
- app/assets/stylesheets/assets/element.css
|
|
99
99
|
- app/assets/stylesheets/assets/jquery-ui.min.css
|
|
100
100
|
- app/assets/stylesheets/assets/jquery_datatables.css
|
|
101
|
+
- app/assets/stylesheets/assets/theme.css
|
|
101
102
|
- lib/assets/engine.rb
|
|
102
103
|
- lib/assets/version.rb
|
|
103
104
|
- lib/killbill_assets_ui.rb
|