viniBaxter-desk_front 100.0.1 → 300.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/viniBaxter/desk_front/version.rb +3 -3
- data/lib/viniBaxter/sass/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap/bootstrap.scss +0 -7
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_quill.scss +6 -4
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/base/_tables.scss +1 -1
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_attributes.scss +14 -0
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_cells.scss +1 -1
- data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_sidebar-and-main-panel.scss +4 -0
- data/lib/viniBaxter/sass/desk_front-studio.scss +5 -0
- metadata +8 -11
- data/lib/viniBaxter/sass/desk_front-boostrap.scss +0 -2
- data/lib/viniBaxter/sass/desk_front-template.scss +0 -2
- data/lib/viniBaxter/sass/desk_front-v2lrf-dashboard.scss +0 -6
- data/lib/viniBaxter/sass/desk_front.scss +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26ef597a37bc4f6b41b2ebb3fca079d72049b3a334cd03f1aef1538906af5255
|
4
|
+
data.tar.gz: 11959d482adb7ac7b8f2544929ed58215c553a6f8687646fe2f2241bb1780cda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 346f948aaf94c8804e4e868ee490b0f52a2248a0a988e7e15f64a10510b44c0dcd288152d0985ea27f5b75126051cd43d8978cdb7ad2700e395b694d17674003
|
7
|
+
data.tar.gz: 69e6391f47ea254aa5bd7d0e81586ea835beed8c0c04beb7f6b2528656bdf3527b18d3544652daee6cac352ed6b60c100a7b0c36f963dad6a4ab5d52aa25e0d5
|
Binary file
|
@@ -1,10 +1,3 @@
|
|
1
|
-
/*!
|
2
|
-
* Bootstrap v4.5.2 (https://getbootstrap.com/)
|
3
|
-
* Copyright 2011-2020 The Bootstrap Authors
|
4
|
-
* Copyright 2011-2020 Twitter, Inc.
|
5
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
|
-
*/
|
7
|
-
|
8
1
|
@import 'mixins';
|
9
2
|
@import 'root';
|
10
3
|
@import 'reboot';
|
@@ -16,11 +16,11 @@
|
|
16
16
|
color: $input-color;
|
17
17
|
}
|
18
18
|
|
19
|
-
.ql-toolbar
|
19
|
+
.ql-toolbar+.ql-container {
|
20
20
|
margin-top: -$border-width;
|
21
21
|
}
|
22
22
|
|
23
|
-
.ql-toolbar
|
23
|
+
.ql-toolbar+.ql-container .ql-editor {
|
24
24
|
border-top-left-radius: 0;
|
25
25
|
border-top-right-radius: 0;
|
26
26
|
}
|
@@ -75,6 +75,7 @@
|
|
75
75
|
font-style: normal;
|
76
76
|
color: $input-placeholder-color;
|
77
77
|
}
|
78
|
+
|
78
79
|
.ql-editor:focus {
|
79
80
|
color: #12263F;
|
80
81
|
background-color: #FFFFFF;
|
@@ -167,7 +168,8 @@
|
|
167
168
|
|
168
169
|
// Arrow
|
169
170
|
|
170
|
-
&:before,
|
171
|
+
&:before,
|
172
|
+
&:after {
|
171
173
|
content: '';
|
172
174
|
position: absolute;
|
173
175
|
left: 50%;
|
@@ -287,4 +289,4 @@
|
|
287
289
|
.ql-editor img {
|
288
290
|
max-width: 100%;
|
289
291
|
height: auto;
|
290
|
-
}
|
292
|
+
}
|
@@ -38,7 +38,7 @@ tbody tr {
|
|
38
38
|
|
39
39
|
td,
|
40
40
|
th {
|
41
|
-
font-feature-settings:
|
41
|
+
font-feature-settings: $base-font;
|
42
42
|
font-kerning: normal;
|
43
43
|
font-variant-ligatures: common-ligatures, contextual;
|
44
44
|
font-variant-numeric: lining-nums, tabular-nums;
|
data/lib/viniBaxter/sass/desk_front/v2lrf-dashboard/administrate/components/_attributes.scss
CHANGED
@@ -18,8 +18,22 @@
|
|
18
18
|
margin-bottom: 0rem;
|
19
19
|
margin-left: 0rem;
|
20
20
|
width: calc(85% - 1rem);
|
21
|
+
|
22
|
+
}
|
23
|
+
|
24
|
+
/* Suffix */
|
25
|
+
.attribute-data--text,
|
26
|
+
.cell-data--text {
|
27
|
+
a {
|
28
|
+
text-decoration: underline;
|
29
|
+
font-weight: 200;
|
30
|
+
font-style: italic;
|
31
|
+
font-size: $font-size-sm;
|
32
|
+
}
|
21
33
|
}
|
22
34
|
|
35
|
+
|
36
|
+
|
23
37
|
.attribute--nested {
|
24
38
|
border: $base-border;
|
25
39
|
padding: $small-spacing;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: viniBaxter-desk_front
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 300.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- viny baxter
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -82,10 +82,7 @@ files:
|
|
82
82
|
- lib/viniBaxter/desk_front/engine.rb
|
83
83
|
- lib/viniBaxter/desk_front/version.rb
|
84
84
|
- lib/viniBaxter/sass/.DS_Store
|
85
|
-
- lib/viniBaxter/sass/desk_front-
|
86
|
-
- lib/viniBaxter/sass/desk_front-template.scss
|
87
|
-
- lib/viniBaxter/sass/desk_front-v2lrf-dashboard.scss
|
88
|
-
- lib/viniBaxter/sass/desk_front.scss
|
85
|
+
- lib/viniBaxter/sass/desk_front-studio.scss
|
89
86
|
- lib/viniBaxter/sass/desk_front/.DS_Store
|
90
87
|
- lib/viniBaxter/sass/desk_front/bootstrap/_alert.scss
|
91
88
|
- lib/viniBaxter/sass/desk_front/bootstrap/_badge.scss
|
@@ -335,11 +332,11 @@ files:
|
|
335
332
|
- lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_sidebar-and-main-panel.scss
|
336
333
|
- lib/viniBaxter/sass/desk_front/v2lrf-dashboard/new_nav/_white-content.scss
|
337
334
|
- viniBaxter-desk_front.gemspec
|
338
|
-
homepage:
|
335
|
+
homepage:
|
339
336
|
licenses:
|
340
337
|
- MIT
|
341
338
|
metadata: {}
|
342
|
-
post_install_message:
|
339
|
+
post_install_message:
|
343
340
|
rdoc_options: []
|
344
341
|
require_paths:
|
345
342
|
- lib
|
@@ -354,8 +351,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
351
|
- !ruby/object:Gem::Version
|
355
352
|
version: '0'
|
356
353
|
requirements: []
|
357
|
-
rubygems_version: 3.
|
358
|
-
signing_key:
|
354
|
+
rubygems_version: 3.2.32
|
355
|
+
signing_key:
|
359
356
|
specification_version: 4
|
360
357
|
summary: test on front
|
361
358
|
test_files: []
|