nodebb-theme-persona 12.1.5 → 12.1.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/README.md +14 -14
- package/package.json +2 -2
- package/public/persona.js +11 -22
- package/{less/account.less → scss/account.scss} +13 -97
- package/{less/categories.less → scss/categories.scss} +10 -40
- package/{less/category.less → scss/category.scss} +26 -75
- package/{less/chats.less → scss/chats.scss} +35 -88
- package/{less/flags.less → scss/flags.scss} +3 -3
- package/{less/footer.less → scss/footer.scss} +0 -1
- package/{less/groups.less → scss/groups.scss} +14 -38
- package/{less/header.less → scss/header.scss} +63 -139
- package/{less/helpers.less → scss/helpers.scss} +0 -0
- package/{less/keyframes.less → scss/keyframes.scss} +0 -0
- package/{less/mixins.less → scss/mixins.scss} +17 -59
- package/{less/mobile.less → scss/mobile.scss} +13 -18
- package/{less/modules/alerts.less → scss/modules/alerts.scss} +21 -21
- package/{less/modules/composer-default.less → scss/modules/composer-default.scss} +2 -2
- package/{less/modules/cookie-consent.less → scss/modules/cookie-consent.scss} +1 -1
- package/{less/modules/fab.less → scss/modules/fab.scss} +2 -2
- package/{less/modules/morph.less → scss/modules/morph.scss} +1 -1
- package/{less/modules/necro-post.less → scss/modules/necro-post.scss} +0 -0
- package/scss/modules/nprogress.scss +80 -0
- package/{less/modules/taskbar.less → scss/modules/taskbar.scss} +11 -10
- package/{less/modules/usercard.less → scss/modules/usercard.scss} +0 -0
- package/{less/noscript.less → scss/noscript.scss} +5 -7
- package/{less/outgoing.less → scss/outgoing.scss} +0 -0
- package/scss/overrides.scss +44 -0
- package/{less/persona.less → scss/persona.scss} +1 -13
- package/{less/posts_list.less → scss/posts_list.scss} +11 -14
- package/{less/register.less → scss/register.scss} +2 -7
- package/scss/search.scss +39 -0
- package/{less/style.less → scss/style.scss} +23 -47
- package/scss/tags.scss +11 -0
- package/{less/topic.less → scss/topic.scss} +53 -90
- package/scss/topics_list.scss +17 -0
- package/{less/variables.less → scss/variables.scss} +3 -3
- package/templates/account/blocks.tpl +24 -26
- package/templates/account/categories.tpl +6 -6
- package/templates/account/consent.tpl +10 -10
- package/templates/account/edit/password.tpl +8 -10
- package/templates/account/edit/username.tpl +6 -10
- package/templates/account/edit.tpl +23 -23
- package/templates/account/followers.tpl +3 -3
- package/templates/account/following.tpl +3 -3
- package/templates/account/groups.tpl +2 -2
- package/templates/account/info.tpl +67 -72
- package/templates/account/posts.tpl +1 -1
- package/templates/account/profile.tpl +20 -18
- package/templates/account/sessions.tpl +3 -3
- package/templates/account/settings.tpl +93 -81
- package/templates/account/topics.tpl +5 -5
- package/templates/account/uploads.tpl +2 -2
- package/templates/admin/plugins/persona.tpl +3 -3
- package/templates/category.tpl +15 -14
- package/templates/chat.tpl +16 -9
- package/templates/chats.tpl +5 -3
- package/templates/flags/detail.tpl +86 -80
- package/templates/flags/list.tpl +4 -4
- package/templates/footer.tpl +1 -1
- package/templates/groups/details.tpl +23 -218
- package/templates/groups/list.tpl +11 -9
- package/templates/groups/members.tpl +1 -4
- package/templates/header.tpl +10 -4
- package/templates/ip-blacklist.tpl +22 -20
- package/templates/login.tpl +17 -14
- package/templates/modules/taskbar.tpl +1 -1
- package/templates/modules/usercard.tpl +2 -2
- package/templates/notifications.tpl +40 -38
- package/templates/partials/acceptTos.tpl +8 -8
- package/templates/partials/account/category-item.tpl +6 -5
- package/templates/partials/account/header.tpl +2 -2
- package/templates/partials/account/menu.tpl +37 -37
- package/templates/partials/breadcrumbs.tpl +1 -1
- package/templates/partials/buttons/newTopic.tpl +10 -3
- package/templates/partials/categories/item.tpl +24 -10
- package/templates/partials/categories/lastpost.tpl +3 -3
- package/templates/partials/categories/link.tpl +10 -10
- package/templates/partials/category/sort.tpl +7 -7
- package/templates/partials/category/subcategory.tpl +3 -3
- package/templates/partials/category/tags.tpl +3 -5
- package/templates/partials/category/tools.tpl +16 -16
- package/templates/partials/category/watch.tpl +8 -10
- package/templates/partials/category-filter-content.tpl +17 -5
- package/templates/partials/category-filter-right.tpl +1 -1
- package/templates/partials/category-selector-content.tpl +17 -4
- package/templates/partials/category-selector-right.tpl +1 -1
- package/templates/partials/chats/message-window.tpl +10 -8
- package/templates/partials/chats/message.tpl +11 -11
- package/templates/partials/chats/options.tpl +8 -8
- package/templates/partials/chats/recent_room.tpl +1 -1
- package/templates/partials/chats/system-message.tpl +1 -1
- package/templates/partials/chats/user.tpl +1 -1
- package/templates/partials/chats-menu.tpl +11 -11
- package/templates/partials/cookie-consent.tpl +1 -1
- package/templates/partials/flags/filters.tpl +34 -32
- package/templates/partials/groups/admin.tpl +195 -0
- package/templates/partials/groups/badge.tpl +1 -0
- package/templates/partials/groups/list.tpl +6 -6
- package/templates/partials/groups/memberlist.tpl +11 -10
- package/templates/partials/menu.tpl +149 -156
- package/templates/partials/notifications_list.tpl +2 -2
- package/templates/partials/paginator.tpl +21 -21
- package/templates/partials/post_bar.tpl +4 -4
- package/templates/partials/posts_list.tpl +1 -1
- package/templates/partials/posts_list_item.tpl +2 -2
- package/templates/partials/quick-search-results.tpl +14 -11
- package/templates/partials/slideout-menu.tpl +1 -1
- package/templates/partials/tags_list.tpl +3 -3
- package/templates/partials/thread_tools.tpl +4 -4
- package/templates/partials/toast.tpl +14 -0
- package/templates/partials/topic/deleted-message.tpl +2 -2
- package/templates/partials/topic/event.tpl +26 -0
- package/templates/partials/topic/navigation-post.tpl +3 -3
- package/templates/partials/topic/navigator.tpl +7 -7
- package/templates/partials/topic/necro-post.tpl +1 -1
- package/templates/partials/topic/post-menu-list.tpl +26 -23
- package/templates/partials/topic/post-menu.tpl +3 -3
- package/templates/partials/topic/post.tpl +49 -44
- package/templates/partials/topic/quickreply.tpl +3 -3
- package/templates/partials/topic/reply-button.tpl +3 -3
- package/templates/partials/topic/sort.tpl +5 -5
- package/templates/partials/topic/tag.tpl +1 -0
- package/templates/partials/topic/tags.tpl +3 -5
- package/templates/partials/topic/topic-menu-list.tpl +18 -16
- package/templates/partials/topic/watch.tpl +11 -10
- package/templates/partials/topic-filters.tpl +12 -0
- package/templates/partials/topic-terms.tpl +12 -0
- package/templates/partials/topics_list.tpl +27 -25
- package/templates/partials/users_list.tpl +22 -10
- package/templates/partials/users_list_menu.tpl +19 -9
- package/templates/popular.tpl +9 -35
- package/templates/post-queue.tpl +42 -35
- package/templates/recent.tpl +10 -24
- package/templates/register.tpl +17 -17
- package/templates/registerComplete.tpl +14 -10
- package/templates/reset.tpl +7 -5
- package/templates/reset_code.tpl +9 -9
- package/templates/search.tpl +100 -87
- package/templates/tag.tpl +8 -10
- package/templates/tags.tpl +5 -3
- package/templates/top.tpl +9 -35
- package/templates/topic.tpl +13 -11
- package/templates/tos.tpl +4 -4
- package/templates/unread.tpl +10 -22
- package/templates/users.tpl +7 -20
- package/theme.json +6 -6
- package/theme.scss +1 -0
- package/less/bootstrap/.csscomb.json +0 -297
- package/less/bootstrap/.csslintrc +0 -19
- package/less/bootstrap/alerts.less +0 -73
- package/less/bootstrap/badges.less +0 -66
- package/less/bootstrap/bootstrap.less +0 -50
- package/less/bootstrap/breadcrumbs.less +0 -26
- package/less/bootstrap/button-groups.less +0 -243
- package/less/bootstrap/buttons.less +0 -160
- package/less/bootstrap/carousel.less +0 -269
- package/less/bootstrap/close.less +0 -34
- package/less/bootstrap/code.less +0 -69
- package/less/bootstrap/component-animations.less +0 -33
- package/less/bootstrap/dropdowns.less +0 -214
- package/less/bootstrap/forms.less +0 -574
- package/less/bootstrap/glyphicons.less +0 -305
- package/less/bootstrap/grid.less +0 -84
- package/less/bootstrap/input-groups.less +0 -166
- package/less/bootstrap/jumbotron.less +0 -50
- package/less/bootstrap/labels.less +0 -64
- package/less/bootstrap/list-group.less +0 -124
- package/less/bootstrap/media.less +0 -61
- package/less/bootstrap/mixins/alerts.less +0 -14
- package/less/bootstrap/mixins/background-variant.less +0 -8
- package/less/bootstrap/mixins/border-radius.less +0 -18
- package/less/bootstrap/mixins/buttons.less +0 -52
- package/less/bootstrap/mixins/center-block.less +0 -7
- package/less/bootstrap/mixins/clearfix.less +0 -22
- package/less/bootstrap/mixins/forms.less +0 -85
- package/less/bootstrap/mixins/gradients.less +0 -59
- package/less/bootstrap/mixins/grid-framework.less +0 -91
- package/less/bootstrap/mixins/grid.less +0 -122
- package/less/bootstrap/mixins/hide-text.less +0 -21
- package/less/bootstrap/mixins/image.less +0 -33
- package/less/bootstrap/mixins/labels.less +0 -12
- package/less/bootstrap/mixins/list-group.less +0 -29
- package/less/bootstrap/mixins/nav-divider.less +0 -10
- package/less/bootstrap/mixins/nav-vertical-align.less +0 -9
- package/less/bootstrap/mixins/opacity.less +0 -8
- package/less/bootstrap/mixins/pagination.less +0 -23
- package/less/bootstrap/mixins/panels.less +0 -24
- package/less/bootstrap/mixins/progress-bar.less +0 -10
- package/less/bootstrap/mixins/reset-filter.less +0 -8
- package/less/bootstrap/mixins/resize.less +0 -6
- package/less/bootstrap/mixins/responsive-visibility.less +0 -15
- package/less/bootstrap/mixins/size.less +0 -10
- package/less/bootstrap/mixins/tab-focus.less +0 -9
- package/less/bootstrap/mixins/table-row.less +0 -28
- package/less/bootstrap/mixins/text-emphasis.less +0 -8
- package/less/bootstrap/mixins/text-overflow.less +0 -8
- package/less/bootstrap/mixins/vendor-prefixes.less +0 -227
- package/less/bootstrap/mixins.less +0 -39
- package/less/bootstrap/modals.less +0 -150
- package/less/bootstrap/navbar.less +0 -660
- package/less/bootstrap/navs.less +0 -242
- package/less/bootstrap/normalize.less +0 -427
- package/less/bootstrap/pager.less +0 -54
- package/less/bootstrap/pagination.less +0 -88
- package/less/bootstrap/panels.less +0 -265
- package/less/bootstrap/popovers.less +0 -135
- package/less/bootstrap/print.less +0 -107
- package/less/bootstrap/progress-bars.less +0 -87
- package/less/bootstrap/responsive-embed.less +0 -35
- package/less/bootstrap/responsive-utilities.less +0 -194
- package/less/bootstrap/scaffolding.less +0 -162
- package/less/bootstrap/tables.less +0 -234
- package/less/bootstrap/theme.less +0 -273
- package/less/bootstrap/thumbnails.less +0 -36
- package/less/bootstrap/tooltip.less +0 -102
- package/less/bootstrap/type.less +0 -302
- package/less/bootstrap/utilities.less +0 -55
- package/less/bootstrap/variables.less +0 -861
- package/less/bootstrap/wells.less +0 -29
- package/less/bootstrap-flipped.css +0 -1550
- package/less/ip-blacklist.less +0 -7
- package/less/modules/bottom-sheet.less +0 -60
- package/less/modules/nprogress.less +0 -80
- package/less/notifications.less +0 -38
- package/less/post-queue.less +0 -19
- package/less/rtl.less +0 -132
- package/less/search.less +0 -96
- package/less/tags.less +0 -37
- package/less/topics_list.less +0 -16
- package/less/users.less +0 -73
- package/templates/alert.tpl +0 -15
- package/templates/partials/change_owner_modal.tpl +0 -22
- package/templates/partials/delete_posts_modal.tpl +0 -19
- package/templates/partials/fork_thread_modal.tpl +0 -22
- package/templates/partials/merge_topics_modal.tpl +0 -58
- package/templates/partials/modals/change_picture_modal.tpl +0 -73
- package/templates/partials/modals/flag_modal.tpl +0 -45
- package/templates/partials/modals/manage_room.tpl +0 -11
- package/templates/partials/modals/manage_room_users.tpl +0 -7
- package/templates/partials/modals/post_history.tpl +0 -36
- package/templates/partials/modals/rename_room.tpl +0 -4
- package/templates/partials/modals/upload_file_modal.tpl +0 -44
- package/templates/partials/modals/upload_picture_from_url_modal.tpl +0 -17
- package/templates/partials/modals/votes_modal.tpl +0 -10
- package/templates/partials/move_thread_modal.tpl +0 -17
- package/templates/partials/topic/badge.tpl +0 -5
- package/theme.less +0 -2
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Button groups
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
// Make the div behave like a button
|
|
6
|
-
.btn-group,
|
|
7
|
-
.btn-group-vertical {
|
|
8
|
-
position: relative;
|
|
9
|
-
display: inline-block;
|
|
10
|
-
vertical-align: middle; // match .btn alignment given font-size hack above
|
|
11
|
-
> .btn {
|
|
12
|
-
position: relative;
|
|
13
|
-
float: left;
|
|
14
|
-
// Bring the "active" button to the front
|
|
15
|
-
&:hover,
|
|
16
|
-
&:focus,
|
|
17
|
-
&:active,
|
|
18
|
-
&.active {
|
|
19
|
-
z-index: 2;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// Prevent double borders when buttons are next to each other
|
|
25
|
-
.btn-group {
|
|
26
|
-
.btn + .btn,
|
|
27
|
-
.btn + .btn-group,
|
|
28
|
-
.btn-group + .btn,
|
|
29
|
-
.btn-group + .btn-group {
|
|
30
|
-
margin-left: -1px;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// Optional: Group multiple button groups together for a toolbar
|
|
35
|
-
.btn-toolbar {
|
|
36
|
-
margin-left: -5px; // Offset the first child's margin
|
|
37
|
-
&:extend(.clearfix all);
|
|
38
|
-
|
|
39
|
-
.btn-group,
|
|
40
|
-
.input-group {
|
|
41
|
-
float: left;
|
|
42
|
-
}
|
|
43
|
-
> .btn,
|
|
44
|
-
> .btn-group,
|
|
45
|
-
> .input-group {
|
|
46
|
-
margin-left: 5px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
|
51
|
-
border-radius: 0;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
|
|
55
|
-
.btn-group > .btn:first-child {
|
|
56
|
-
margin-left: 0;
|
|
57
|
-
&:not(:last-child):not(.dropdown-toggle) {
|
|
58
|
-
.border-right-radius(0);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
|
|
62
|
-
.btn-group > .btn:last-child:not(:first-child),
|
|
63
|
-
.btn-group > .dropdown-toggle:not(:first-child) {
|
|
64
|
-
.border-left-radius(0);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)
|
|
68
|
-
.btn-group > .btn-group {
|
|
69
|
-
float: left;
|
|
70
|
-
}
|
|
71
|
-
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
72
|
-
border-radius: 0;
|
|
73
|
-
}
|
|
74
|
-
.btn-group > .btn-group:first-child:not(:last-child) {
|
|
75
|
-
> .btn:last-child,
|
|
76
|
-
> .dropdown-toggle {
|
|
77
|
-
.border-right-radius(0);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
|
81
|
-
.border-left-radius(0);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// On active and open, don't show outline
|
|
85
|
-
.btn-group .dropdown-toggle:active,
|
|
86
|
-
.btn-group.open .dropdown-toggle {
|
|
87
|
-
outline: 0;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
// Sizing
|
|
92
|
-
//
|
|
93
|
-
// Remix the default button sizing classes into new ones for easier manipulation.
|
|
94
|
-
|
|
95
|
-
.btn-group-xs > .btn { &:extend(.btn-xs); }
|
|
96
|
-
.btn-group-sm > .btn { &:extend(.btn-sm); }
|
|
97
|
-
.btn-group-lg > .btn { &:extend(.btn-lg); }
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
// Split button dropdowns
|
|
101
|
-
// ----------------------
|
|
102
|
-
|
|
103
|
-
// Give the line between buttons some depth
|
|
104
|
-
.btn-group > .btn + .dropdown-toggle {
|
|
105
|
-
padding-left: 8px;
|
|
106
|
-
padding-right: 8px;
|
|
107
|
-
}
|
|
108
|
-
.btn-group > .btn-lg + .dropdown-toggle {
|
|
109
|
-
padding-left: 12px;
|
|
110
|
-
padding-right: 12px;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
// The clickable button for toggling the menu
|
|
114
|
-
// Remove the gradient and set the same inset shadow as the :active state
|
|
115
|
-
.btn-group.open .dropdown-toggle {
|
|
116
|
-
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
|
117
|
-
|
|
118
|
-
// Show no shadow for `.btn-link` since it has no other button styles.
|
|
119
|
-
&.btn-link {
|
|
120
|
-
.box-shadow(none);
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
// Reposition the caret
|
|
126
|
-
.btn .caret {
|
|
127
|
-
margin-left: 0;
|
|
128
|
-
}
|
|
129
|
-
// Carets in other button sizes
|
|
130
|
-
.btn-lg .caret {
|
|
131
|
-
border-width: @caret-width-large @caret-width-large 0;
|
|
132
|
-
border-bottom-width: 0;
|
|
133
|
-
}
|
|
134
|
-
// Upside down carets for .dropup
|
|
135
|
-
.dropup .btn-lg .caret {
|
|
136
|
-
border-width: 0 @caret-width-large @caret-width-large;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
// Vertical button groups
|
|
141
|
-
// ----------------------
|
|
142
|
-
|
|
143
|
-
.btn-group-vertical {
|
|
144
|
-
> .btn,
|
|
145
|
-
> .btn-group,
|
|
146
|
-
> .btn-group > .btn {
|
|
147
|
-
display: block;
|
|
148
|
-
float: none;
|
|
149
|
-
width: 100%;
|
|
150
|
-
max-width: 100%;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// Clear floats so dropdown menus can be properly placed
|
|
154
|
-
> .btn-group {
|
|
155
|
-
&:extend(.clearfix all);
|
|
156
|
-
> .btn {
|
|
157
|
-
float: none;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
> .btn + .btn,
|
|
162
|
-
> .btn + .btn-group,
|
|
163
|
-
> .btn-group + .btn,
|
|
164
|
-
> .btn-group + .btn-group {
|
|
165
|
-
margin-top: -1px;
|
|
166
|
-
margin-left: 0;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.btn-group-vertical > .btn {
|
|
171
|
-
&:not(:first-child):not(:last-child) {
|
|
172
|
-
border-radius: 0;
|
|
173
|
-
}
|
|
174
|
-
&:first-child:not(:last-child) {
|
|
175
|
-
border-top-right-radius: @border-radius-base;
|
|
176
|
-
.border-bottom-radius(0);
|
|
177
|
-
}
|
|
178
|
-
&:last-child:not(:first-child) {
|
|
179
|
-
border-bottom-left-radius: @border-radius-base;
|
|
180
|
-
.border-top-radius(0);
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
184
|
-
border-radius: 0;
|
|
185
|
-
}
|
|
186
|
-
.btn-group-vertical > .btn-group:first-child:not(:last-child) {
|
|
187
|
-
> .btn:last-child,
|
|
188
|
-
> .dropdown-toggle {
|
|
189
|
-
.border-bottom-radius(0);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
|
193
|
-
.border-top-radius(0);
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
// Justified button groups
|
|
198
|
-
// ----------------------
|
|
199
|
-
|
|
200
|
-
.btn-group-justified {
|
|
201
|
-
display: table;
|
|
202
|
-
width: 100%;
|
|
203
|
-
table-layout: fixed;
|
|
204
|
-
border-collapse: separate;
|
|
205
|
-
> .btn,
|
|
206
|
-
> .btn-group {
|
|
207
|
-
float: none;
|
|
208
|
-
display: table-cell;
|
|
209
|
-
width: 1%;
|
|
210
|
-
}
|
|
211
|
-
> .btn-group .btn {
|
|
212
|
-
width: 100%;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
> .btn-group .dropdown-menu {
|
|
216
|
-
left: auto;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
// Checkbox and radio options
|
|
222
|
-
//
|
|
223
|
-
// In order to support the browser's form validation feedback, powered by the
|
|
224
|
-
// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
|
|
225
|
-
// `display: none;` or `visibility: hidden;` as that also hides the popover.
|
|
226
|
-
// Simply visually hiding the inputs via `opacity` would leave them clickable in
|
|
227
|
-
// certain cases which is prevented by using `clip` and `pointer-events`.
|
|
228
|
-
// This way, we ensure a DOM element is visible to position the popover from.
|
|
229
|
-
//
|
|
230
|
-
// See https://github.com/twbs/bootstrap/pull/12794 and
|
|
231
|
-
// https://github.com/twbs/bootstrap/pull/14559 for more information.
|
|
232
|
-
|
|
233
|
-
[data-toggle="buttons"] {
|
|
234
|
-
> .btn,
|
|
235
|
-
> .btn-group > .btn {
|
|
236
|
-
input[type="radio"],
|
|
237
|
-
input[type="checkbox"] {
|
|
238
|
-
position: absolute;
|
|
239
|
-
clip: rect(0,0,0,0);
|
|
240
|
-
pointer-events: none;
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
}
|
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Buttons
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// Base styles
|
|
7
|
-
// --------------------------------------------------
|
|
8
|
-
|
|
9
|
-
.btn {
|
|
10
|
-
display: inline-block;
|
|
11
|
-
margin-bottom: 0; // For input.btn
|
|
12
|
-
font-weight: @btn-font-weight;
|
|
13
|
-
text-align: center;
|
|
14
|
-
vertical-align: middle;
|
|
15
|
-
touch-action: manipulation;
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
|
|
18
|
-
border: 1px solid transparent;
|
|
19
|
-
white-space: nowrap;
|
|
20
|
-
.button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);
|
|
21
|
-
.user-select(none);
|
|
22
|
-
|
|
23
|
-
&,
|
|
24
|
-
&:active,
|
|
25
|
-
&.active {
|
|
26
|
-
&:focus,
|
|
27
|
-
&.focus {
|
|
28
|
-
.tab-focus();
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
&:hover,
|
|
33
|
-
&:focus,
|
|
34
|
-
&.focus {
|
|
35
|
-
color: @btn-default-color;
|
|
36
|
-
text-decoration: none;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&:active,
|
|
40
|
-
&.active {
|
|
41
|
-
outline: 0;
|
|
42
|
-
background-image: none;
|
|
43
|
-
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&.disabled,
|
|
47
|
-
&[disabled],
|
|
48
|
-
fieldset[disabled] & {
|
|
49
|
-
cursor: @cursor-disabled;
|
|
50
|
-
pointer-events: none; // Future-proof disabling of clicks
|
|
51
|
-
.opacity(.65);
|
|
52
|
-
.box-shadow(none);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
// Alternate buttons
|
|
58
|
-
// --------------------------------------------------
|
|
59
|
-
|
|
60
|
-
.btn-default {
|
|
61
|
-
.button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
|
|
62
|
-
}
|
|
63
|
-
.btn-primary {
|
|
64
|
-
.button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
|
|
65
|
-
}
|
|
66
|
-
// Success appears as green
|
|
67
|
-
.btn-success {
|
|
68
|
-
.button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
|
|
69
|
-
}
|
|
70
|
-
// Info appears as blue-green
|
|
71
|
-
.btn-info {
|
|
72
|
-
.button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
|
|
73
|
-
}
|
|
74
|
-
// Warning appears as orange
|
|
75
|
-
.btn-warning {
|
|
76
|
-
.button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
|
|
77
|
-
}
|
|
78
|
-
// Danger and error appear as red
|
|
79
|
-
.btn-danger {
|
|
80
|
-
.button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
// Link buttons
|
|
85
|
-
// -------------------------
|
|
86
|
-
|
|
87
|
-
// Make a button look and behave like a link
|
|
88
|
-
.btn-link {
|
|
89
|
-
color: @link-color;
|
|
90
|
-
font-weight: normal;
|
|
91
|
-
border-radius: 0;
|
|
92
|
-
|
|
93
|
-
&,
|
|
94
|
-
&:active,
|
|
95
|
-
&.active,
|
|
96
|
-
&[disabled],
|
|
97
|
-
fieldset[disabled] & {
|
|
98
|
-
background-color: transparent;
|
|
99
|
-
.box-shadow(none);
|
|
100
|
-
}
|
|
101
|
-
&,
|
|
102
|
-
&:hover,
|
|
103
|
-
&:focus,
|
|
104
|
-
&:active {
|
|
105
|
-
border-color: transparent;
|
|
106
|
-
}
|
|
107
|
-
&:hover,
|
|
108
|
-
&:focus {
|
|
109
|
-
color: @link-hover-color;
|
|
110
|
-
text-decoration: @link-hover-decoration;
|
|
111
|
-
background-color: transparent;
|
|
112
|
-
}
|
|
113
|
-
&[disabled],
|
|
114
|
-
fieldset[disabled] & {
|
|
115
|
-
&:hover,
|
|
116
|
-
&:focus {
|
|
117
|
-
color: @btn-link-disabled-color;
|
|
118
|
-
text-decoration: none;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
// Button Sizes
|
|
125
|
-
// --------------------------------------------------
|
|
126
|
-
|
|
127
|
-
.btn-lg {
|
|
128
|
-
// line-height: ensure even-numbered height of button next to large input
|
|
129
|
-
.button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
|
|
130
|
-
}
|
|
131
|
-
.btn-sm {
|
|
132
|
-
// line-height: ensure proper height of button next to small input
|
|
133
|
-
.button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
|
134
|
-
}
|
|
135
|
-
.btn-xs {
|
|
136
|
-
.button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @border-radius-small);
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
// Block button
|
|
141
|
-
// --------------------------------------------------
|
|
142
|
-
|
|
143
|
-
.btn-block {
|
|
144
|
-
display: block;
|
|
145
|
-
width: 100%;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// Vertically space out multiple block buttons
|
|
149
|
-
.btn-block + .btn-block {
|
|
150
|
-
margin-top: 5px;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// Specificity overrides
|
|
154
|
-
input[type="submit"],
|
|
155
|
-
input[type="reset"],
|
|
156
|
-
input[type="button"] {
|
|
157
|
-
&.btn-block {
|
|
158
|
-
width: 100%;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Carousel
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// Wrapper for the slide container and indicators
|
|
7
|
-
.carousel {
|
|
8
|
-
position: relative;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.carousel-inner {
|
|
12
|
-
position: relative;
|
|
13
|
-
overflow: hidden;
|
|
14
|
-
width: 100%;
|
|
15
|
-
|
|
16
|
-
> .item {
|
|
17
|
-
display: none;
|
|
18
|
-
position: relative;
|
|
19
|
-
.transition(.6s ease-in-out left);
|
|
20
|
-
|
|
21
|
-
// Account for jankitude on images
|
|
22
|
-
> img,
|
|
23
|
-
> a > img {
|
|
24
|
-
&:extend(.img-responsive);
|
|
25
|
-
line-height: 1;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// WebKit CSS3 transforms for supported devices
|
|
29
|
-
@media all and (transform-3d), (-webkit-transform-3d) {
|
|
30
|
-
.transition-transform(~'0.6s ease-in-out');
|
|
31
|
-
.backface-visibility(~'hidden');
|
|
32
|
-
.perspective(1000);
|
|
33
|
-
|
|
34
|
-
&.next,
|
|
35
|
-
&.active.right {
|
|
36
|
-
.translate3d(100%, 0, 0);
|
|
37
|
-
left: 0;
|
|
38
|
-
}
|
|
39
|
-
&.prev,
|
|
40
|
-
&.active.left {
|
|
41
|
-
.translate3d(-100%, 0, 0);
|
|
42
|
-
left: 0;
|
|
43
|
-
}
|
|
44
|
-
&.next.left,
|
|
45
|
-
&.prev.right,
|
|
46
|
-
&.active {
|
|
47
|
-
.translate3d(0, 0, 0);
|
|
48
|
-
left: 0;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
> .active,
|
|
54
|
-
> .next,
|
|
55
|
-
> .prev {
|
|
56
|
-
display: block;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
> .active {
|
|
60
|
-
left: 0;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
> .next,
|
|
64
|
-
> .prev {
|
|
65
|
-
position: absolute;
|
|
66
|
-
top: 0;
|
|
67
|
-
width: 100%;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
> .next {
|
|
71
|
-
left: 100%;
|
|
72
|
-
}
|
|
73
|
-
> .prev {
|
|
74
|
-
left: -100%;
|
|
75
|
-
}
|
|
76
|
-
> .next.left,
|
|
77
|
-
> .prev.right {
|
|
78
|
-
left: 0;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
> .active.left {
|
|
82
|
-
left: -100%;
|
|
83
|
-
}
|
|
84
|
-
> .active.right {
|
|
85
|
-
left: 100%;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// Left/right controls for nav
|
|
91
|
-
// ---------------------------
|
|
92
|
-
|
|
93
|
-
.carousel-control {
|
|
94
|
-
position: absolute;
|
|
95
|
-
top: 0;
|
|
96
|
-
left: 0;
|
|
97
|
-
bottom: 0;
|
|
98
|
-
width: @carousel-control-width;
|
|
99
|
-
.opacity(@carousel-control-opacity);
|
|
100
|
-
font-size: @carousel-control-font-size;
|
|
101
|
-
color: @carousel-control-color;
|
|
102
|
-
text-align: center;
|
|
103
|
-
text-shadow: @carousel-text-shadow;
|
|
104
|
-
// We can't have this transition here because WebKit cancels the carousel
|
|
105
|
-
// animation if you trip this while in the middle of another animation.
|
|
106
|
-
|
|
107
|
-
// Set gradients for backgrounds
|
|
108
|
-
&.left {
|
|
109
|
-
#gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
|
|
110
|
-
}
|
|
111
|
-
&.right {
|
|
112
|
-
left: auto;
|
|
113
|
-
right: 0;
|
|
114
|
-
#gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
// Hover/focus state
|
|
118
|
-
&:hover,
|
|
119
|
-
&:focus {
|
|
120
|
-
outline: 0;
|
|
121
|
-
color: @carousel-control-color;
|
|
122
|
-
text-decoration: none;
|
|
123
|
-
.opacity(.9);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// Toggles
|
|
127
|
-
.icon-prev,
|
|
128
|
-
.icon-next,
|
|
129
|
-
.glyphicon-chevron-left,
|
|
130
|
-
.glyphicon-chevron-right {
|
|
131
|
-
position: absolute;
|
|
132
|
-
top: 50%;
|
|
133
|
-
z-index: 5;
|
|
134
|
-
display: inline-block;
|
|
135
|
-
}
|
|
136
|
-
.icon-prev,
|
|
137
|
-
.glyphicon-chevron-left {
|
|
138
|
-
left: 50%;
|
|
139
|
-
margin-left: -10px;
|
|
140
|
-
}
|
|
141
|
-
.icon-next,
|
|
142
|
-
.glyphicon-chevron-right {
|
|
143
|
-
right: 50%;
|
|
144
|
-
margin-right: -10px;
|
|
145
|
-
}
|
|
146
|
-
.icon-prev,
|
|
147
|
-
.icon-next {
|
|
148
|
-
width: 20px;
|
|
149
|
-
height: 20px;
|
|
150
|
-
margin-top: -10px;
|
|
151
|
-
line-height: 1;
|
|
152
|
-
font-family: serif;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
.icon-prev {
|
|
157
|
-
&:before {
|
|
158
|
-
content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
.icon-next {
|
|
162
|
-
&:before {
|
|
163
|
-
content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
// Optional indicator pips
|
|
169
|
-
//
|
|
170
|
-
// Add an unordered list with the following class and add a list item for each
|
|
171
|
-
// slide your carousel holds.
|
|
172
|
-
|
|
173
|
-
.carousel-indicators {
|
|
174
|
-
position: absolute;
|
|
175
|
-
bottom: 10px;
|
|
176
|
-
left: 50%;
|
|
177
|
-
z-index: 15;
|
|
178
|
-
width: 60%;
|
|
179
|
-
margin-left: -30%;
|
|
180
|
-
padding-left: 0;
|
|
181
|
-
list-style: none;
|
|
182
|
-
text-align: center;
|
|
183
|
-
|
|
184
|
-
li {
|
|
185
|
-
display: inline-block;
|
|
186
|
-
width: 10px;
|
|
187
|
-
height: 10px;
|
|
188
|
-
margin: 1px;
|
|
189
|
-
text-indent: -999px;
|
|
190
|
-
border: 1px solid @carousel-indicator-border-color;
|
|
191
|
-
border-radius: 10px;
|
|
192
|
-
cursor: pointer;
|
|
193
|
-
|
|
194
|
-
// IE8-9 hack for event handling
|
|
195
|
-
//
|
|
196
|
-
// Internet Explorer 8-9 does not support clicks on elements without a set
|
|
197
|
-
// `background-color`. We cannot use `filter` since that's not viewed as a
|
|
198
|
-
// background color by the browser. Thus, a hack is needed.
|
|
199
|
-
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
|
|
200
|
-
//
|
|
201
|
-
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
|
|
202
|
-
// set alpha transparency for the best results possible.
|
|
203
|
-
background-color: #000 \9; // IE8
|
|
204
|
-
background-color: rgba(0,0,0,0); // IE9
|
|
205
|
-
}
|
|
206
|
-
.active {
|
|
207
|
-
margin: 0;
|
|
208
|
-
width: 12px;
|
|
209
|
-
height: 12px;
|
|
210
|
-
background-color: @carousel-indicator-active-bg;
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
// Optional captions
|
|
215
|
-
// -----------------------------
|
|
216
|
-
// Hidden by default for smaller viewports
|
|
217
|
-
.carousel-caption {
|
|
218
|
-
position: absolute;
|
|
219
|
-
left: 15%;
|
|
220
|
-
right: 15%;
|
|
221
|
-
bottom: 20px;
|
|
222
|
-
z-index: 10;
|
|
223
|
-
padding-top: 20px;
|
|
224
|
-
padding-bottom: 20px;
|
|
225
|
-
color: @carousel-caption-color;
|
|
226
|
-
text-align: center;
|
|
227
|
-
text-shadow: @carousel-text-shadow;
|
|
228
|
-
& .btn {
|
|
229
|
-
text-shadow: none; // No shadow for button elements in carousel-caption
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
// Scale up controls for tablets and up
|
|
235
|
-
@media screen and (min-width: @screen-sm-min) {
|
|
236
|
-
|
|
237
|
-
// Scale up the controls a smidge
|
|
238
|
-
.carousel-control {
|
|
239
|
-
.glyphicon-chevron-left,
|
|
240
|
-
.glyphicon-chevron-right,
|
|
241
|
-
.icon-prev,
|
|
242
|
-
.icon-next {
|
|
243
|
-
width: 30px;
|
|
244
|
-
height: 30px;
|
|
245
|
-
margin-top: -15px;
|
|
246
|
-
font-size: 30px;
|
|
247
|
-
}
|
|
248
|
-
.glyphicon-chevron-left,
|
|
249
|
-
.icon-prev {
|
|
250
|
-
margin-left: -15px;
|
|
251
|
-
}
|
|
252
|
-
.glyphicon-chevron-right,
|
|
253
|
-
.icon-next {
|
|
254
|
-
margin-right: -15px;
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
// Show and left align the captions
|
|
259
|
-
.carousel-caption {
|
|
260
|
-
left: 20%;
|
|
261
|
-
right: 20%;
|
|
262
|
-
padding-bottom: 30px;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// Move up the indicators
|
|
266
|
-
.carousel-indicators {
|
|
267
|
-
bottom: 20px;
|
|
268
|
-
}
|
|
269
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Close icons
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
.close {
|
|
7
|
-
float: right;
|
|
8
|
-
font-size: (@font-size-base * 1.5);
|
|
9
|
-
font-weight: @close-font-weight;
|
|
10
|
-
line-height: 1;
|
|
11
|
-
color: @close-color;
|
|
12
|
-
text-shadow: @close-text-shadow;
|
|
13
|
-
.opacity(.2);
|
|
14
|
-
|
|
15
|
-
&:hover,
|
|
16
|
-
&:focus {
|
|
17
|
-
color: @close-color;
|
|
18
|
-
text-decoration: none;
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
.opacity(.5);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
// Additional properties for button version
|
|
24
|
-
// iOS requires the button element instead of an anchor tag.
|
|
25
|
-
// If you want the anchor version, it requires `href="#"`.
|
|
26
|
-
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
|
27
|
-
button& {
|
|
28
|
-
padding: 0;
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
background: transparent;
|
|
31
|
-
border: 0;
|
|
32
|
-
-webkit-appearance: none;
|
|
33
|
-
}
|
|
34
|
-
}
|