liferay-frontend-theme-styled 6.0.6 → 6.0.10
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/css/_extras.scss +0 -3
- package/css/_imports.scss +2 -0
- package/css/_portal.scss +2 -5
- package/css/_taglib.scss +11 -3
- package/css/application/_dialog.scss +10 -4
- package/css/application/_drag_drop.scss +77 -0
- package/css/application/_editor_alloy.scss +130 -9
- package/css/application/_editor_lfr_source.scss +80 -5
- package/css/application/_item_viewer.scss +242 -26
- package/css/application/_modal.scss +5 -0
- package/css/application/_tooltip.scss +1 -1
- package/css/application/_tree.scss +4 -0
- package/css/base/_misc.scss +3 -0
- package/css/portal/_asset_category_selector.scss +31 -3
- package/css/portal/_asset_column.scss +35 -10
- package/css/portal/_aui.scss +21 -0
- package/css/portal/_auto_row.scss +43 -7
- package/css/portal/_dropdowns.scss +11 -0
- package/css/portal/_forms.scss +42 -0
- package/css/portal/_generic_portal.scss +97 -25
- package/css/portal/_generic_portlet.scss +46 -0
- package/css/portal/_pagination.scss +56 -3
- package/css/portal/_panel_component.scss +12 -49
- package/css/portal/_preview.scss +74 -40
- package/css/portal/_rich_editor.scss +5 -10
- package/css/portal/_spa.scss +11 -0
- package/css/portal/_tag_selector.scss +75 -1
- package/css/portal/_translation_manager.scss +55 -0
- package/css/portal/_tree.scss +26 -5
- package/css/portal/_undo_manager.scss +16 -0
- package/css/portal/_uploader.scss +161 -14
- package/css/portlet/_controls.scss +20 -0
- package/css/portlet/_topper.scss +149 -0
- package/css/taglib/_alert.scss +21 -0
- package/css/taglib/_app_view_common.scss +99 -12
- package/css/taglib/_asset_metadata.scss +32 -0
- package/css/taglib/_contextual_sidebar.scss +56 -0
- package/css/taglib/_diff.scss +10 -0
- package/css/taglib/_diff_html.scss +7 -3
- package/css/taglib/_diff_version_comparator.scss +27 -2
- package/css/taglib/_discussion.scss +108 -13
- package/css/taglib/_drop_here_info.scss +97 -10
- package/css/taglib/_empty_result_message.scss +85 -0
- package/css/taglib/_field_wrapper.scss +12 -0
- package/css/taglib/_form_navigator.scss +139 -41
- package/css/taglib/_header.scss +23 -4
- package/css/taglib/_icon_list.scss +14 -0
- package/css/taglib/_icon_menu.scss +67 -0
- package/css/taglib/_image_selector.scss +156 -0
- package/css/taglib/_info_bar.scss +49 -0
- package/css/taglib/_input_localized.scss +64 -13
- package/css/taglib/_input_move_boxes.scss +95 -9
- package/css/taglib/_map.scss +22 -1
- package/css/taglib/_navbar.scss +44 -3
- package/css/taglib/_notification.scss +30 -0
- package/css/taglib/_preview.scss +16 -6
- package/css/taglib/_search_container.scss +57 -0
- package/css/taglib/_search_iterator.scss +93 -0
- package/css/taglib/_search_toggle.scss +47 -19
- package/css/taglib/_social_activities.scss +21 -2
- package/css/taglib/_trash_common.scss +14 -0
- package/css/taglib/_user_display.scss +53 -3
- package/css/taglib/_vertical_card.scss +25 -0
- package/css/taglib/_workflow_status.scss +8 -0
- package/package.json +1 -1
- package/css/portal/_openid.scss +0 -6
- package/css/portal/_page_settings.scss +0 -3
- package/css/portal/_panel_page.scss +0 -23
- package/css/portal/_panel_pagination.scss +0 -27
- package/css/portal/_toolbar.scss +0 -31
- package/css/taglib/_app_view_search_entry.scss +0 -33
- package/css/taglib/_app_view_toolbar.scss +0 -48
- package/css/taglib/_calendar.scss +0 -37
package/css/_extras.scss
CHANGED
|
@@ -91,9 +91,6 @@ body > .lfr-menu-list ul,
|
|
|
91
91
|
.rule-group-instance-container .rule-group-instance,
|
|
92
92
|
.select-documents,
|
|
93
93
|
.select-files,
|
|
94
|
-
.taglib-ratings.stars:hover,
|
|
95
|
-
.taglib-ratings.stars:hover .liferay-rating-vote > div,
|
|
96
|
-
.taglib-ratings.stars .rating-focused > div,
|
|
97
94
|
.tags-search-combobox .field-input-text {
|
|
98
95
|
border-radius: 4px;
|
|
99
96
|
}
|
package/css/_imports.scss
CHANGED
package/css/_portal.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@import './portal/accessibility';
|
|
2
2
|
@import './portal/asset_category_selector';
|
|
3
3
|
@import './portal/asset_column';
|
|
4
|
+
@import './portal/aui';
|
|
4
5
|
@import './portal/auto_row';
|
|
5
6
|
@import './portal/dropdowns';
|
|
6
7
|
@import './portal/edit_layout';
|
|
@@ -8,19 +9,15 @@
|
|
|
8
9
|
@import './portal/generic_portal';
|
|
9
10
|
@import './portal/generic_portlet';
|
|
10
11
|
@import './portal/header_row';
|
|
11
|
-
@import './portal/openid';
|
|
12
|
-
@import './portal/page_settings';
|
|
13
12
|
@import './portal/pagination';
|
|
14
13
|
@import './portal/panel_component';
|
|
15
|
-
@import './portal/panel_page';
|
|
16
|
-
@import './portal/panel_pagination';
|
|
17
14
|
@import './portal/portlet_css_editor';
|
|
18
15
|
@import './portal/preview';
|
|
19
16
|
@import './portal/rich_editor';
|
|
20
17
|
@import './portal/sidebar';
|
|
21
18
|
@import './portal/spa';
|
|
22
19
|
@import './portal/tag_selector';
|
|
23
|
-
@import './portal/toolbar';
|
|
24
20
|
@import './portal/translation_manager';
|
|
25
21
|
@import './portal/tree';
|
|
22
|
+
@import './portal/undo_manager';
|
|
26
23
|
@import './portal/uploader';
|
package/css/_taglib.scss
CHANGED
|
@@ -1,31 +1,39 @@
|
|
|
1
1
|
@import './taglib/variables';
|
|
2
2
|
|
|
3
|
+
@import './taglib/alert';
|
|
3
4
|
@import './taglib/app_view_common';
|
|
4
5
|
@import './taglib/app_view_entry';
|
|
5
|
-
@import './taglib/app_view_search_entry';
|
|
6
|
-
@import './taglib/app_view_toolbar';
|
|
7
6
|
@import './taglib/asset_metadata';
|
|
8
|
-
@import './taglib/
|
|
7
|
+
@import './taglib/contextual_sidebar';
|
|
9
8
|
@import './taglib/diff';
|
|
10
9
|
@import './taglib/diff_html';
|
|
11
10
|
@import './taglib/diff_version_comparator';
|
|
12
11
|
@import './taglib/discussion';
|
|
13
12
|
@import './taglib/drop_here_info';
|
|
13
|
+
@import './taglib/empty_result_message';
|
|
14
14
|
@import './taglib/field_wrapper';
|
|
15
15
|
@import './taglib/form_navigator';
|
|
16
16
|
@import './taglib/header';
|
|
17
17
|
@import './taglib/icon';
|
|
18
|
+
@import './taglib/icon_list';
|
|
19
|
+
@import './taglib/icon_menu';
|
|
20
|
+
@import './taglib/image_selector';
|
|
21
|
+
@import './taglib/info_bar';
|
|
18
22
|
@import './taglib/input_localized';
|
|
19
23
|
@import './taglib/input_move_boxes';
|
|
20
24
|
@import './taglib/item_selector';
|
|
21
25
|
@import './taglib/layouts_tree';
|
|
22
26
|
@import './taglib/map';
|
|
23
27
|
@import './taglib/navbar';
|
|
28
|
+
@import './taglib/notification';
|
|
24
29
|
@import './taglib/preview';
|
|
25
30
|
@import './taglib/search_container';
|
|
31
|
+
@import './taglib/search_iterator';
|
|
26
32
|
@import './taglib/search_toggle';
|
|
27
33
|
@import './taglib/social_activities';
|
|
28
34
|
@import './taglib/social_bookmarks';
|
|
35
|
+
@import './taglib/trash_common';
|
|
29
36
|
@import './taglib/user_display';
|
|
37
|
+
@import './taglib/vertical_card';
|
|
30
38
|
@import './taglib/webdav';
|
|
31
39
|
@import './taglib/workflow_status';
|
|
@@ -168,11 +168,17 @@
|
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
.lfr-dynamic-uploader
|
|
172
|
-
|
|
171
|
+
.lfr-dynamic-uploader {
|
|
172
|
+
display: table;
|
|
173
|
+
table-layout: fixed;
|
|
174
|
+
width: 100%;
|
|
173
175
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
+
&.hide-dialog-footer {
|
|
177
|
+
bottom: 0;
|
|
178
|
+
|
|
179
|
+
+ .dialog-footer {
|
|
180
|
+
display: none;
|
|
181
|
+
}
|
|
176
182
|
}
|
|
177
183
|
}
|
|
178
184
|
|
|
@@ -1,3 +1,80 @@
|
|
|
1
|
+
html#{$cadmin-selector} {
|
|
2
|
+
.portlet-layout.dragging {
|
|
3
|
+
border-collapse: separate;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.drop-area {
|
|
7
|
+
background-color: #d3dadd;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.active-area {
|
|
11
|
+
background: #ffc;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.portlet-boundary.yui3-dd-dragging {
|
|
15
|
+
opacity: 0.6;
|
|
16
|
+
|
|
17
|
+
.portlet {
|
|
18
|
+
border: 2px dashed #ccc;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.sortable-layout-proxy {
|
|
23
|
+
opacity: 1;
|
|
24
|
+
|
|
25
|
+
.portlet-topper {
|
|
26
|
+
background-image: none;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.proxy {
|
|
31
|
+
cursor: move;
|
|
32
|
+
|
|
33
|
+
opacity: 0.65;
|
|
34
|
+
|
|
35
|
+
position: absolute;
|
|
36
|
+
|
|
37
|
+
&.generic-portlet {
|
|
38
|
+
height: 200px;
|
|
39
|
+
width: 300px;
|
|
40
|
+
|
|
41
|
+
.portlet-title {
|
|
42
|
+
padding: 10px;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&.not-intersecting .forbidden-action {
|
|
47
|
+
background: url(../images/application/forbidden_action.png)
|
|
48
|
+
no-repeat;
|
|
49
|
+
display: block;
|
|
50
|
+
height: 32px;
|
|
51
|
+
position: absolute;
|
|
52
|
+
right: -15px;
|
|
53
|
+
top: -15px;
|
|
54
|
+
width: 32px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.resizable-proxy {
|
|
59
|
+
border: 1px dashed #828f95;
|
|
60
|
+
position: absolute;
|
|
61
|
+
visibility: hidden;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.sortable-proxy {
|
|
65
|
+
background: #727c81;
|
|
66
|
+
margin-top: 1px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.sortable-layout-drag-target-indicator {
|
|
70
|
+
margin: 2px 0;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.yui3-dd-proxy {
|
|
74
|
+
z-index: 1110 !important;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
1
78
|
.portlet-layout.dragging {
|
|
2
79
|
border-collapse: separate;
|
|
3
80
|
}
|
|
@@ -1,28 +1,149 @@
|
|
|
1
|
+
* [class*='ae-toolbar-'][role='toolbar'] {
|
|
2
|
+
z-index: 980;
|
|
3
|
+
|
|
4
|
+
@include media-breakpoint-down(sm) {
|
|
5
|
+
z-index: 1000;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.ae-ui .ae-toolbars .ae-toolbar-add {
|
|
10
|
+
border-width: 1px;
|
|
11
|
+
margin-left: 4px;
|
|
12
|
+
z-index: 989;
|
|
13
|
+
|
|
14
|
+
.ae-button {
|
|
15
|
+
height: 28px;
|
|
16
|
+
width: 28px;
|
|
17
|
+
|
|
18
|
+
@include media-breakpoint-up(xl) {
|
|
19
|
+
height: 32px;
|
|
20
|
+
width: 32px;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
1
25
|
.alloy-editor-container {
|
|
26
|
+
position: relative;
|
|
27
|
+
|
|
28
|
+
.alloy-editor-icon {
|
|
29
|
+
bottom: 8px;
|
|
30
|
+
color: #869cad;
|
|
31
|
+
display: none;
|
|
32
|
+
position: absolute;
|
|
33
|
+
right: 8px;
|
|
34
|
+
}
|
|
35
|
+
|
|
2
36
|
.alloy-editor {
|
|
37
|
+
cursor: text;
|
|
38
|
+
outline: 0;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
text-align: start;
|
|
41
|
+
|
|
42
|
+
&[dir='rtl'] + .alloy-editor-icon {
|
|
43
|
+
left: 8px;
|
|
44
|
+
}
|
|
45
|
+
|
|
3
46
|
&.alloy-editor-placeholder {
|
|
4
47
|
color: #2b4259;
|
|
5
48
|
|
|
49
|
+
&:before {
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&.readonly {
|
|
54
|
+
color: #ccc;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&.ae-placeholder:empty {
|
|
58
|
+
min-height: 1.5em;
|
|
59
|
+
}
|
|
60
|
+
|
|
6
61
|
&.ae-placeholder:not(:focus) {
|
|
7
62
|
border-left-color: #dbdde1;
|
|
8
63
|
color: #b0b4bb;
|
|
64
|
+
|
|
65
|
+
&:not(.form-control) {
|
|
66
|
+
border-left: 2px solid;
|
|
67
|
+
padding-left: 10px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.has-error & {
|
|
71
|
+
border-left-color: #c67;
|
|
72
|
+
}
|
|
9
73
|
}
|
|
10
74
|
|
|
11
|
-
&.
|
|
12
|
-
|
|
75
|
+
&.ae-placeholder[data-required='true']:not(:focus):before {
|
|
76
|
+
content: attr(data-placeholder) ' *';
|
|
13
77
|
}
|
|
14
78
|
}
|
|
15
79
|
|
|
16
|
-
|
|
80
|
+
a {
|
|
81
|
+
cursor: auto;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
blockquote {
|
|
85
|
+
margin: 1em 40px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
p:only-child {
|
|
89
|
+
margin-bottom: 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
&.form-control {
|
|
93
|
+
height: auto;
|
|
94
|
+
|
|
95
|
+
~ .alloy-editor-icon {
|
|
96
|
+
display: block;
|
|
97
|
+
max-width: 24px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.cke_widget_wrapper {
|
|
102
|
+
max-width: 100%;
|
|
103
|
+
}
|
|
17
104
|
}
|
|
18
105
|
|
|
19
|
-
.alloy-editor-
|
|
20
|
-
|
|
106
|
+
.alloy-editor-switch {
|
|
107
|
+
position: absolute;
|
|
108
|
+
text-align: right;
|
|
109
|
+
top: 0;
|
|
110
|
+
width: 100%;
|
|
111
|
+
|
|
112
|
+
.btn {
|
|
113
|
+
margin-top: 0;
|
|
114
|
+
}
|
|
21
115
|
}
|
|
22
|
-
}
|
|
23
116
|
|
|
24
|
-
.
|
|
25
|
-
|
|
26
|
-
|
|
117
|
+
.alloy-editor-wrapper {
|
|
118
|
+
padding-top: 44px;
|
|
119
|
+
|
|
120
|
+
.lfr-source-editor {
|
|
121
|
+
display: none;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
&.show-source {
|
|
125
|
+
.alloy-editor-placeholder {
|
|
126
|
+
display: none;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.lfr-source-editor {
|
|
130
|
+
display: block;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.form-feedback-item {
|
|
136
|
+
.has-error & {
|
|
137
|
+
font-size: 16px;
|
|
138
|
+
font-weight: normal;
|
|
139
|
+
line-height: 1.4em;
|
|
140
|
+
text-align: left;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.cke_widget_inline {
|
|
145
|
+
.ie11 & {
|
|
146
|
+
display: inline-block;
|
|
147
|
+
}
|
|
27
148
|
}
|
|
28
149
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
.lfr-source-editor {
|
|
2
|
-
border
|
|
2
|
+
border: solid 0 #ccc;
|
|
3
|
+
border-bottom-width: 2px;
|
|
4
|
+
position: relative;
|
|
5
|
+
|
|
6
|
+
.ace_editor {
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
3
9
|
|
|
4
10
|
.lfr-source-editor-toolbar {
|
|
5
11
|
li {
|
|
@@ -111,8 +117,77 @@
|
|
|
111
117
|
}
|
|
112
118
|
}
|
|
113
119
|
|
|
114
|
-
.lfr-fullscreen-source-editor
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
120
|
+
.lfr-fullscreen-source-editor {
|
|
121
|
+
height: 100%;
|
|
122
|
+
overflow: hidden;
|
|
123
|
+
|
|
124
|
+
.lfr-fullscreen-source-editor-header {
|
|
125
|
+
height: 40px;
|
|
126
|
+
margin-right: 4px;
|
|
127
|
+
margin-top: 4px;
|
|
128
|
+
min-height: 40px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.lfr-fullscreen-source-editor-content {
|
|
132
|
+
height: 95%;
|
|
133
|
+
position: relative;
|
|
134
|
+
|
|
135
|
+
.panel-splitter {
|
|
136
|
+
border: 1px solid #ccc;
|
|
137
|
+
position: absolute;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.preview-panel {
|
|
141
|
+
display: inline-block;
|
|
142
|
+
overflow-y: auto;
|
|
143
|
+
padding-left: 20px;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.source-panel {
|
|
147
|
+
display: inline-block;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
&.vertical {
|
|
151
|
+
.source-panel,
|
|
152
|
+
.preview-panel {
|
|
153
|
+
height: 100%;
|
|
154
|
+
width: 50%;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.panel-splitter {
|
|
158
|
+
height: 100%;
|
|
159
|
+
left: 50%;
|
|
160
|
+
top: 0;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&.horizontal {
|
|
165
|
+
.source-panel,
|
|
166
|
+
.preview-panel {
|
|
167
|
+
height: 50%;
|
|
168
|
+
width: 100%;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.panel-splitter {
|
|
172
|
+
top: 50%;
|
|
173
|
+
width: 100%;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&.simple {
|
|
178
|
+
.panel-splitter,
|
|
179
|
+
.preview-panel {
|
|
180
|
+
display: none;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.source-panel {
|
|
184
|
+
height: 100%;
|
|
185
|
+
width: 100%;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.lfr-fulscreen-source-editor-dialog .modal-footer {
|
|
192
|
+
text-align: left;
|
|
118
193
|
}
|