rb-document-form-constructor 0.7.5 → 0.7.6
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.
- package/dist/rb-document-form-constructor.esm.js +30 -2
- package/dist/rb-document-form-constructor.min.js +2 -2
- package/dist/rb-document-form-constructor.ssr.js +45 -29
- package/dist/scss/_global.scss +3 -3
- package/dist/scss/_variables.scss +17 -17
- package/dist/scss/components/_doc-form.scss +36 -36
- package/dist/scss/components/_doc-template-constructor.scss +112 -112
- package/dist/scss/components/_doc-template-facet-list.scss +41 -41
- package/dist/scss/components/_doc-template-field-sidebar.scss +52 -52
- package/dist/scss/components/_field-rule-form-modal.scss +27 -27
- package/dist/scss/components.scss +7 -7
- package/package.json +63 -63
- package/src/components/DocForm.vue +216 -216
- package/src/components/DocTemplateConstructor.vue +254 -254
- package/src/components/DocTemplateFacetList.vue +119 -119
- package/src/components/DocTemplateFieldSidebar.vue +293 -291
- package/src/components/DocTemplateSectionModal.vue +63 -63
- package/src/components/FieldRuleFormModal.vue +272 -272
- package/src/assets/fontello/README.txt +0 -75
|
@@ -3,14 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
if (Object.getOwnPropertySymbols) {
|
|
5
5
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
10
|
-
});
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
keys.push.apply(keys, symbols);
|
|
6
|
+
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
7
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
8
|
+
})), keys.push.apply(keys, symbols);
|
|
14
9
|
}
|
|
15
10
|
|
|
16
11
|
return keys;
|
|
@@ -18,19 +13,12 @@
|
|
|
18
13
|
|
|
19
14
|
function _objectSpread2(target) {
|
|
20
15
|
for (var i = 1; i < arguments.length; i++) {
|
|
21
|
-
var source = arguments[i]
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
} else if (Object.getOwnPropertyDescriptors) {
|
|
28
|
-
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
29
|
-
} else {
|
|
30
|
-
ownKeys(Object(source)).forEach(function (key) {
|
|
31
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
32
|
-
});
|
|
33
|
-
}
|
|
16
|
+
var source = null != arguments[i] ? arguments[i] : {};
|
|
17
|
+
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
18
|
+
_defineProperty$1(target, key, source[key]);
|
|
19
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
20
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
21
|
+
});
|
|
34
22
|
}
|
|
35
23
|
|
|
36
24
|
return target;
|
|
@@ -5029,7 +5017,20 @@ var fcInputs = {
|
|
|
5029
5017
|
text: 'Дата',
|
|
5030
5018
|
name: 'date',
|
|
5031
5019
|
type: 'rb-date-picker-input',
|
|
5032
|
-
props: {
|
|
5020
|
+
props: {
|
|
5021
|
+
minDate: {
|
|
5022
|
+
type: 'date',
|
|
5023
|
+
default: new Date(),
|
|
5024
|
+
label: 'Установить минимальную дату',
|
|
5025
|
+
visible: true
|
|
5026
|
+
},
|
|
5027
|
+
maxDate: {
|
|
5028
|
+
type: 'date',
|
|
5029
|
+
default: null,
|
|
5030
|
+
label: 'Установить максимальную дату',
|
|
5031
|
+
visible: true
|
|
5032
|
+
}
|
|
5033
|
+
},
|
|
5033
5034
|
propsData: {},
|
|
5034
5035
|
defaultValue: null
|
|
5035
5036
|
},
|
|
@@ -5037,7 +5038,20 @@ var fcInputs = {
|
|
|
5037
5038
|
text: 'Дата и вермя',
|
|
5038
5039
|
name: 'date',
|
|
5039
5040
|
type: 'rb-date-picker-input',
|
|
5040
|
-
props: {
|
|
5041
|
+
props: {
|
|
5042
|
+
minDate: {
|
|
5043
|
+
type: 'date',
|
|
5044
|
+
default: null,
|
|
5045
|
+
label: 'Установить минимальную дату',
|
|
5046
|
+
visible: true
|
|
5047
|
+
},
|
|
5048
|
+
maxDate: {
|
|
5049
|
+
type: 'date',
|
|
5050
|
+
default: null,
|
|
5051
|
+
label: 'Установить максимальную дату',
|
|
5052
|
+
visible: true
|
|
5053
|
+
}
|
|
5054
|
+
},
|
|
5041
5055
|
propsData: {},
|
|
5042
5056
|
defaultValue: null
|
|
5043
5057
|
},
|
|
@@ -5468,7 +5482,7 @@ var __vue_inject_styles__$5 = undefined;
|
|
|
5468
5482
|
var __vue_scope_id__$5 = undefined;
|
|
5469
5483
|
/* module identifier */
|
|
5470
5484
|
|
|
5471
|
-
var __vue_module_identifier__$5 = "data-v-
|
|
5485
|
+
var __vue_module_identifier__$5 = "data-v-0dc54a8c";
|
|
5472
5486
|
/* functional template */
|
|
5473
5487
|
|
|
5474
5488
|
var __vue_is_functional_template__$5 = false;
|
|
@@ -11020,7 +11034,7 @@ var __vue_inject_styles__$4 = undefined;
|
|
|
11020
11034
|
var __vue_scope_id__$4 = undefined;
|
|
11021
11035
|
/* module identifier */
|
|
11022
11036
|
|
|
11023
|
-
var __vue_module_identifier__$4 = "data-v-
|
|
11037
|
+
var __vue_module_identifier__$4 = "data-v-12095172";
|
|
11024
11038
|
/* functional template */
|
|
11025
11039
|
|
|
11026
11040
|
var __vue_is_functional_template__$4 = false;
|
|
@@ -11392,7 +11406,7 @@ var __vue_inject_styles__$3 = undefined;
|
|
|
11392
11406
|
var __vue_scope_id__$3 = undefined;
|
|
11393
11407
|
/* module identifier */
|
|
11394
11408
|
|
|
11395
|
-
var __vue_module_identifier__$3 = "data-v-
|
|
11409
|
+
var __vue_module_identifier__$3 = "data-v-d4e8021e";
|
|
11396
11410
|
/* functional template */
|
|
11397
11411
|
|
|
11398
11412
|
var __vue_is_functional_template__$3 = false;
|
|
@@ -11816,7 +11830,7 @@ var __vue_inject_styles__$2 = undefined;
|
|
|
11816
11830
|
var __vue_scope_id__$2 = undefined;
|
|
11817
11831
|
/* module identifier */
|
|
11818
11832
|
|
|
11819
|
-
var __vue_module_identifier__$2 = "data-v-
|
|
11833
|
+
var __vue_module_identifier__$2 = "data-v-2b82f62a";
|
|
11820
11834
|
/* functional template */
|
|
11821
11835
|
|
|
11822
11836
|
var __vue_is_functional_template__$2 = false;
|
|
@@ -11920,6 +11934,8 @@ var FieldRuleFormModal = __vue_component__$3;var script$1 = {
|
|
|
11920
11934
|
getPropInputType: function getPropInputType(prop, propName) {
|
|
11921
11935
|
if (['string', 'number'].includes(prop.type)) {
|
|
11922
11936
|
return 'b-form-input';
|
|
11937
|
+
} else if (['date'].includes(prop.type)) {
|
|
11938
|
+
return 'rb-date-picker-input';
|
|
11923
11939
|
} else {
|
|
11924
11940
|
return 'rb-boolean-single-option-input';
|
|
11925
11941
|
}
|
|
@@ -12250,7 +12266,7 @@ var __vue_inject_styles__$1 = undefined;
|
|
|
12250
12266
|
var __vue_scope_id__$1 = undefined;
|
|
12251
12267
|
/* module identifier */
|
|
12252
12268
|
|
|
12253
|
-
var __vue_module_identifier__$1 = "data-v-
|
|
12269
|
+
var __vue_module_identifier__$1 = "data-v-683b4764";
|
|
12254
12270
|
/* functional template */
|
|
12255
12271
|
|
|
12256
12272
|
var __vue_is_functional_template__$1 = false;
|
|
@@ -12675,7 +12691,7 @@ var __vue_inject_styles__ = undefined;
|
|
|
12675
12691
|
var __vue_scope_id__ = undefined;
|
|
12676
12692
|
/* module identifier */
|
|
12677
12693
|
|
|
12678
|
-
var __vue_module_identifier__ = "data-v-
|
|
12694
|
+
var __vue_module_identifier__ = "data-v-319bc99c";
|
|
12679
12695
|
/* functional template */
|
|
12680
12696
|
|
|
12681
12697
|
var __vue_is_functional_template__ = false;
|
package/dist/scss/_global.scss
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
.cursor-pointer {
|
|
2
|
-
cursor: pointer;
|
|
3
|
-
}
|
|
1
|
+
.cursor-pointer {
|
|
2
|
+
cursor: pointer;
|
|
3
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
// DocTemplateFacetList
|
|
2
|
-
$rb-facet-list-border-color: $border-color !default;
|
|
3
|
-
|
|
4
|
-
// DocTemplateConstructor
|
|
5
|
-
$rb-doc-template-constructor-title-color: #333 !default;
|
|
6
|
-
$rb-doc-template-constructor-title-font-size: 16px !default;
|
|
7
|
-
$rb-doc-template-section-bg: #E9EAEA !default;
|
|
8
|
-
$rb-doc-template-constructor-form-column-border-color: #D5D5D6;
|
|
9
|
-
|
|
10
|
-
// DocTemplateFieldSidebar
|
|
11
|
-
$rb-doc-template-field-sidebar-font-size-lg: 1rem !default;
|
|
12
|
-
$rb-doc-template-field-sidebar-top: 72px !default;
|
|
13
|
-
$rb-doc-template-field-sidebar-close-button-left: -46px !default;
|
|
14
|
-
|
|
15
|
-
// DocForm
|
|
16
|
-
$rb-doc-form-font-size-lg: 1rem !default;
|
|
17
|
-
$rb-doc-form-legend-line-height: $line-height-base !default;
|
|
1
|
+
// DocTemplateFacetList
|
|
2
|
+
$rb-facet-list-border-color: $border-color !default;
|
|
3
|
+
|
|
4
|
+
// DocTemplateConstructor
|
|
5
|
+
$rb-doc-template-constructor-title-color: #333 !default;
|
|
6
|
+
$rb-doc-template-constructor-title-font-size: 16px !default;
|
|
7
|
+
$rb-doc-template-section-bg: #E9EAEA !default;
|
|
8
|
+
$rb-doc-template-constructor-form-column-border-color: #D5D5D6;
|
|
9
|
+
|
|
10
|
+
// DocTemplateFieldSidebar
|
|
11
|
+
$rb-doc-template-field-sidebar-font-size-lg: 1rem !default;
|
|
12
|
+
$rb-doc-template-field-sidebar-top: 72px !default;
|
|
13
|
+
$rb-doc-template-field-sidebar-close-button-left: -46px !default;
|
|
14
|
+
|
|
15
|
+
// DocForm
|
|
16
|
+
$rb-doc-form-font-size-lg: 1rem !default;
|
|
17
|
+
$rb-doc-form-legend-line-height: $line-height-base !default;
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
.rb-doc-form {
|
|
2
|
-
h4 {
|
|
3
|
-
font-weight: bold;
|
|
4
|
-
font-size: $rb-doc-form-font-size-lg;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.rb-form-section {
|
|
8
|
-
padding-bottom: 10px;
|
|
9
|
-
padding-top: 10px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.rb-form-column {
|
|
13
|
-
flex: 1;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.rb-form-column:first-child {
|
|
17
|
-
margin-left: 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.rb-form-column:last-child {
|
|
21
|
-
margin-right: 0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.rb-form-column {
|
|
25
|
-
margin-left: 10px;
|
|
26
|
-
margin-right: 10px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
legend.col-form-label {
|
|
30
|
-
max-width: 100%;
|
|
31
|
-
display: block;
|
|
32
|
-
overflow: hidden;
|
|
33
|
-
text-overflow: ellipsis;
|
|
34
|
-
white-space: nowrap;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
.rb-doc-form {
|
|
2
|
+
h4 {
|
|
3
|
+
font-weight: bold;
|
|
4
|
+
font-size: $rb-doc-form-font-size-lg;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.rb-form-section {
|
|
8
|
+
padding-bottom: 10px;
|
|
9
|
+
padding-top: 10px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.rb-form-column {
|
|
13
|
+
flex: 1;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.rb-form-column:first-child {
|
|
17
|
+
margin-left: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.rb-form-column:last-child {
|
|
21
|
+
margin-right: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.rb-form-column {
|
|
25
|
+
margin-left: 10px;
|
|
26
|
+
margin-right: 10px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
legend.col-form-label {
|
|
30
|
+
max-width: 100%;
|
|
31
|
+
display: block;
|
|
32
|
+
overflow: hidden;
|
|
33
|
+
text-overflow: ellipsis;
|
|
34
|
+
white-space: nowrap;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
.rb-doc-template-constructor {
|
|
2
|
-
height: 100%;
|
|
3
|
-
|
|
4
|
-
h4 {
|
|
5
|
-
color: $rb-doc-template-constructor-title-color;
|
|
6
|
-
font-weight: bold;
|
|
7
|
-
font-size: $rb-doc-template-constructor-title-font-size;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.rb-form-constructor {
|
|
11
|
-
height: 100%;
|
|
12
|
-
overflow-y: auto;
|
|
13
|
-
background-color: white;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.rb-constructor-toolbar {
|
|
17
|
-
padding: 16px 16px 16px 16px;
|
|
18
|
-
background-color: white;
|
|
19
|
-
border-bottom: 1px solid $border-color;
|
|
20
|
-
|
|
21
|
-
h4 {
|
|
22
|
-
margin-bottom: 0;
|
|
23
|
-
line-height: 38px;
|
|
24
|
-
margin-right: 10px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.btn {
|
|
28
|
-
margin-left: 10px;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.rb-constructor-body {
|
|
33
|
-
padding: 16px;
|
|
34
|
-
|
|
35
|
-
.card {
|
|
36
|
-
border-width: 2px;
|
|
37
|
-
border-style: dashed;
|
|
38
|
-
background-color: $rb-doc-template-section-bg;
|
|
39
|
-
|
|
40
|
-
.card-header, .card-body {
|
|
41
|
-
background-color: $rb-doc-template-section-bg;
|
|
42
|
-
border-color: $border-color;
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.rb-form-card {
|
|
48
|
-
margin-bottom: 20px;
|
|
49
|
-
|
|
50
|
-
.rb-form-column {
|
|
51
|
-
flex: 1;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.card-header {
|
|
55
|
-
border-bottom-width: 0;
|
|
56
|
-
display: flex;
|
|
57
|
-
flex-direction: row;
|
|
58
|
-
|
|
59
|
-
.rb-text {
|
|
60
|
-
font-size: 16px;
|
|
61
|
-
line-height: 24px;
|
|
62
|
-
font-weight: bold;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.rb-icon {
|
|
66
|
-
line-height: 24px;
|
|
67
|
-
font-size: 16px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.rb-form-column {
|
|
73
|
-
.form-group:hover {
|
|
74
|
-
legend.col-form-label .rb-actions {
|
|
75
|
-
visibility: visible;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
legend.col-form-label {
|
|
80
|
-
font-size: $font-size-base;
|
|
81
|
-
font-weight: bold;
|
|
82
|
-
margin-bottom: 12px;
|
|
83
|
-
display: flex;
|
|
84
|
-
flex-direction: row;
|
|
85
|
-
color: $rb-doc-template-constructor-title-color;
|
|
86
|
-
|
|
87
|
-
.rb-text {
|
|
88
|
-
flex: 1;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.rb-actions {
|
|
92
|
-
visibility: hidden;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.form-control:disabled,
|
|
97
|
-
.btn.disabled {
|
|
98
|
-
background-color: white;
|
|
99
|
-
opacity: 1;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.rb-form-column {
|
|
104
|
-
padding: 10px;
|
|
105
|
-
border: 2px dashed $rb-doc-template-constructor-form-column-border-color;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.rb-form-column:not(.rb-single-column) {
|
|
109
|
-
margin: 0 10px;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
1
|
+
.rb-doc-template-constructor {
|
|
2
|
+
height: 100%;
|
|
3
|
+
|
|
4
|
+
h4 {
|
|
5
|
+
color: $rb-doc-template-constructor-title-color;
|
|
6
|
+
font-weight: bold;
|
|
7
|
+
font-size: $rb-doc-template-constructor-title-font-size;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.rb-form-constructor {
|
|
11
|
+
height: 100%;
|
|
12
|
+
overflow-y: auto;
|
|
13
|
+
background-color: white;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.rb-constructor-toolbar {
|
|
17
|
+
padding: 16px 16px 16px 16px;
|
|
18
|
+
background-color: white;
|
|
19
|
+
border-bottom: 1px solid $border-color;
|
|
20
|
+
|
|
21
|
+
h4 {
|
|
22
|
+
margin-bottom: 0;
|
|
23
|
+
line-height: 38px;
|
|
24
|
+
margin-right: 10px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.btn {
|
|
28
|
+
margin-left: 10px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.rb-constructor-body {
|
|
33
|
+
padding: 16px;
|
|
34
|
+
|
|
35
|
+
.card {
|
|
36
|
+
border-width: 2px;
|
|
37
|
+
border-style: dashed;
|
|
38
|
+
background-color: $rb-doc-template-section-bg;
|
|
39
|
+
|
|
40
|
+
.card-header, .card-body {
|
|
41
|
+
background-color: $rb-doc-template-section-bg;
|
|
42
|
+
border-color: $border-color;
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.rb-form-card {
|
|
48
|
+
margin-bottom: 20px;
|
|
49
|
+
|
|
50
|
+
.rb-form-column {
|
|
51
|
+
flex: 1;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.card-header {
|
|
55
|
+
border-bottom-width: 0;
|
|
56
|
+
display: flex;
|
|
57
|
+
flex-direction: row;
|
|
58
|
+
|
|
59
|
+
.rb-text {
|
|
60
|
+
font-size: 16px;
|
|
61
|
+
line-height: 24px;
|
|
62
|
+
font-weight: bold;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.rb-icon {
|
|
66
|
+
line-height: 24px;
|
|
67
|
+
font-size: 16px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.rb-form-column {
|
|
73
|
+
.form-group:hover {
|
|
74
|
+
legend.col-form-label .rb-actions {
|
|
75
|
+
visibility: visible;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
legend.col-form-label {
|
|
80
|
+
font-size: $font-size-base;
|
|
81
|
+
font-weight: bold;
|
|
82
|
+
margin-bottom: 12px;
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: row;
|
|
85
|
+
color: $rb-doc-template-constructor-title-color;
|
|
86
|
+
|
|
87
|
+
.rb-text {
|
|
88
|
+
flex: 1;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.rb-actions {
|
|
92
|
+
visibility: hidden;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.form-control:disabled,
|
|
97
|
+
.btn.disabled {
|
|
98
|
+
background-color: white;
|
|
99
|
+
opacity: 1;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.rb-form-column {
|
|
104
|
+
padding: 10px;
|
|
105
|
+
border: 2px dashed $rb-doc-template-constructor-form-column-border-color;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.rb-form-column:not(.rb-single-column) {
|
|
109
|
+
margin: 0 10px;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
.rb-facets-sidebar {
|
|
2
|
-
height: 100%;
|
|
3
|
-
width: 264px;
|
|
4
|
-
overflow-y: auto;
|
|
5
|
-
background-color: white;
|
|
6
|
-
border-right: 1px solid $rb-facet-list-border-color;
|
|
7
|
-
|
|
8
|
-
h4 {
|
|
9
|
-
padding: 24px 16px 16px 16px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
h6 {
|
|
13
|
-
padding-left: 16px;
|
|
14
|
-
padding-right: 16px;
|
|
15
|
-
font-weight: 500;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
form {
|
|
19
|
-
padding-left: 16px;
|
|
20
|
-
padding-right: 16px;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.rb-facet-label {
|
|
24
|
-
font-weight: bold;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.rb-facet-list {
|
|
28
|
-
.rb-facet {
|
|
29
|
-
padding: 10px 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
& > .rb-facet:not(:last-child) {
|
|
33
|
-
border-bottom: 1px solid $rb-facet-list-border-color;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.list-group-item {
|
|
37
|
-
border-radius: 0;
|
|
38
|
-
border: none;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
1
|
+
.rb-facets-sidebar {
|
|
2
|
+
height: 100%;
|
|
3
|
+
width: 264px;
|
|
4
|
+
overflow-y: auto;
|
|
5
|
+
background-color: white;
|
|
6
|
+
border-right: 1px solid $rb-facet-list-border-color;
|
|
7
|
+
|
|
8
|
+
h4 {
|
|
9
|
+
padding: 24px 16px 16px 16px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
h6 {
|
|
13
|
+
padding-left: 16px;
|
|
14
|
+
padding-right: 16px;
|
|
15
|
+
font-weight: 500;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
form {
|
|
19
|
+
padding-left: 16px;
|
|
20
|
+
padding-right: 16px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.rb-facet-label {
|
|
24
|
+
font-weight: bold;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.rb-facet-list {
|
|
28
|
+
.rb-facet {
|
|
29
|
+
padding: 10px 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& > .rb-facet:not(:last-child) {
|
|
33
|
+
border-bottom: 1px solid $rb-facet-list-border-color;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.list-group-item {
|
|
37
|
+
border-radius: 0;
|
|
38
|
+
border: none;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
.rb-doc-template-field-sidebar {
|
|
2
|
-
.dropdown-menu.show {
|
|
3
|
-
max-width: 288px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.b-sidebar {
|
|
7
|
-
top: $rb-doc-template-field-sidebar-top;
|
|
8
|
-
padding-bottom: $rb-doc-template-field-sidebar-top;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.rb-sidebar-close-btn {
|
|
12
|
-
opacity: 0.5;
|
|
13
|
-
position: absolute;
|
|
14
|
-
left: $rb-doc-template-field-sidebar-close-button-left;
|
|
15
|
-
border-radius: 0;
|
|
16
|
-
padding-left: 4px;
|
|
17
|
-
padding-right: 4px;
|
|
18
|
-
font-size: 16px;
|
|
19
|
-
|
|
20
|
-
.rb-icon {
|
|
21
|
-
font-size: 24px;
|
|
22
|
-
line-height: 24px;
|
|
23
|
-
vertical-align: middle;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
form {
|
|
28
|
-
padding: 10px 16px;
|
|
29
|
-
|
|
30
|
-
.rb-form-section {
|
|
31
|
-
margin-bottom: 20px;
|
|
32
|
-
|
|
33
|
-
& > .rb-title {
|
|
34
|
-
font-size: $rb-doc-template-field-sidebar-font-size-lg;
|
|
35
|
-
font-weight: bold;
|
|
36
|
-
margin-bottom: 10px;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
h4 {
|
|
42
|
-
margin-bottom: 0;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.form-group.rb-immutable .rb-text {
|
|
46
|
-
font-size: $rb-doc-template-field-sidebar-font-size-lg;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.custom-checkbox {
|
|
50
|
-
margin-bottom: 12px;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
1
|
+
.rb-doc-template-field-sidebar {
|
|
2
|
+
.dropdown-menu.show {
|
|
3
|
+
max-width: 288px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.b-sidebar {
|
|
7
|
+
top: $rb-doc-template-field-sidebar-top;
|
|
8
|
+
padding-bottom: $rb-doc-template-field-sidebar-top;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.rb-sidebar-close-btn {
|
|
12
|
+
opacity: 0.5;
|
|
13
|
+
position: absolute;
|
|
14
|
+
left: $rb-doc-template-field-sidebar-close-button-left;
|
|
15
|
+
border-radius: 0;
|
|
16
|
+
padding-left: 4px;
|
|
17
|
+
padding-right: 4px;
|
|
18
|
+
font-size: 16px;
|
|
19
|
+
|
|
20
|
+
.rb-icon {
|
|
21
|
+
font-size: 24px;
|
|
22
|
+
line-height: 24px;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
form {
|
|
28
|
+
padding: 10px 16px;
|
|
29
|
+
|
|
30
|
+
.rb-form-section {
|
|
31
|
+
margin-bottom: 20px;
|
|
32
|
+
|
|
33
|
+
& > .rb-title {
|
|
34
|
+
font-size: $rb-doc-template-field-sidebar-font-size-lg;
|
|
35
|
+
font-weight: bold;
|
|
36
|
+
margin-bottom: 10px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
h4 {
|
|
42
|
+
margin-bottom: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.form-group.rb-immutable .rb-text {
|
|
46
|
+
font-size: $rb-doc-template-field-sidebar-font-size-lg;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.custom-checkbox {
|
|
50
|
+
margin-bottom: 12px;
|
|
51
|
+
}
|
|
52
|
+
}
|