nodebb-theme-persona 12.1.4 → 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 -23
- 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,194 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Responsive: Utility classes
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// IE10 in Windows (Phone) 8
|
|
7
|
-
//
|
|
8
|
-
// Support for responsive views via media queries is kind of borked in IE10, for
|
|
9
|
-
// Surface/desktop in split view and for Windows Phone 8. This particular fix
|
|
10
|
-
// must be accompanied by a snippet of JavaScript to sniff the user agent and
|
|
11
|
-
// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at
|
|
12
|
-
// our Getting Started page for more information on this bug.
|
|
13
|
-
//
|
|
14
|
-
// For more information, see the following:
|
|
15
|
-
//
|
|
16
|
-
// Issue: https://github.com/twbs/bootstrap/issues/10497
|
|
17
|
-
// Docs: http://getbootstrap.com/getting-started/#support-ie10-width
|
|
18
|
-
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
|
|
19
|
-
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
|
|
20
|
-
|
|
21
|
-
@-ms-viewport {
|
|
22
|
-
width: device-width;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
// Visibility utilities
|
|
27
|
-
// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0
|
|
28
|
-
.visible-xs,
|
|
29
|
-
.visible-sm,
|
|
30
|
-
.visible-md,
|
|
31
|
-
.visible-lg {
|
|
32
|
-
.responsive-invisibility();
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.visible-xs-block,
|
|
36
|
-
.visible-xs-inline,
|
|
37
|
-
.visible-xs-inline-block,
|
|
38
|
-
.visible-sm-block,
|
|
39
|
-
.visible-sm-inline,
|
|
40
|
-
.visible-sm-inline-block,
|
|
41
|
-
.visible-md-block,
|
|
42
|
-
.visible-md-inline,
|
|
43
|
-
.visible-md-inline-block,
|
|
44
|
-
.visible-lg-block,
|
|
45
|
-
.visible-lg-inline,
|
|
46
|
-
.visible-lg-inline-block {
|
|
47
|
-
display: none !important;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.visible-xs {
|
|
51
|
-
@media (max-width: @screen-xs-max) {
|
|
52
|
-
.responsive-visibility();
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
.visible-xs-block {
|
|
56
|
-
@media (max-width: @screen-xs-max) {
|
|
57
|
-
display: block !important;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
.visible-xs-inline {
|
|
61
|
-
@media (max-width: @screen-xs-max) {
|
|
62
|
-
display: inline !important;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
.visible-xs-inline-block {
|
|
66
|
-
@media (max-width: @screen-xs-max) {
|
|
67
|
-
display: inline-block !important;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.visible-sm {
|
|
72
|
-
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
|
|
73
|
-
.responsive-visibility();
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
.visible-sm-block {
|
|
77
|
-
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
|
|
78
|
-
display: block !important;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
.visible-sm-inline {
|
|
82
|
-
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
|
|
83
|
-
display: inline !important;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
.visible-sm-inline-block {
|
|
87
|
-
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
|
|
88
|
-
display: inline-block !important;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.visible-md {
|
|
93
|
-
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
|
|
94
|
-
.responsive-visibility();
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
.visible-md-block {
|
|
98
|
-
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
|
|
99
|
-
display: block !important;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
.visible-md-inline {
|
|
103
|
-
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
|
|
104
|
-
display: inline !important;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
.visible-md-inline-block {
|
|
108
|
-
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
|
|
109
|
-
display: inline-block !important;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.visible-lg {
|
|
114
|
-
@media (min-width: @screen-lg-min) {
|
|
115
|
-
.responsive-visibility();
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
.visible-lg-block {
|
|
119
|
-
@media (min-width: @screen-lg-min) {
|
|
120
|
-
display: block !important;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
.visible-lg-inline {
|
|
124
|
-
@media (min-width: @screen-lg-min) {
|
|
125
|
-
display: inline !important;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
.visible-lg-inline-block {
|
|
129
|
-
@media (min-width: @screen-lg-min) {
|
|
130
|
-
display: inline-block !important;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.hidden-xs {
|
|
135
|
-
@media (max-width: @screen-xs-max) {
|
|
136
|
-
.responsive-invisibility();
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
.hidden-sm {
|
|
140
|
-
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
|
|
141
|
-
.responsive-invisibility();
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
.hidden-md {
|
|
145
|
-
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
|
|
146
|
-
.responsive-invisibility();
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
.hidden-lg {
|
|
150
|
-
@media (min-width: @screen-lg-min) {
|
|
151
|
-
.responsive-invisibility();
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
// Print utilities
|
|
157
|
-
//
|
|
158
|
-
// Media queries are placed on the inside to be mixin-friendly.
|
|
159
|
-
|
|
160
|
-
// Note: Deprecated .visible-print as of v3.2.0
|
|
161
|
-
.visible-print {
|
|
162
|
-
.responsive-invisibility();
|
|
163
|
-
|
|
164
|
-
@media print {
|
|
165
|
-
.responsive-visibility();
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
.visible-print-block {
|
|
169
|
-
display: none !important;
|
|
170
|
-
|
|
171
|
-
@media print {
|
|
172
|
-
display: block !important;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
.visible-print-inline {
|
|
176
|
-
display: none !important;
|
|
177
|
-
|
|
178
|
-
@media print {
|
|
179
|
-
display: inline !important;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
.visible-print-inline-block {
|
|
183
|
-
display: none !important;
|
|
184
|
-
|
|
185
|
-
@media print {
|
|
186
|
-
display: inline-block !important;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.hidden-print {
|
|
191
|
-
@media print {
|
|
192
|
-
.responsive-invisibility();
|
|
193
|
-
}
|
|
194
|
-
}
|
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Scaffolding
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// Reset the box-sizing
|
|
7
|
-
//
|
|
8
|
-
// Heads up! This reset may cause conflicts with some third-party widgets.
|
|
9
|
-
// For recommendations on resolving such conflicts, see
|
|
10
|
-
// http://getbootstrap.com/getting-started/#third-box-sizing
|
|
11
|
-
* {
|
|
12
|
-
.box-sizing(border-box);
|
|
13
|
-
}
|
|
14
|
-
*:before,
|
|
15
|
-
*:after {
|
|
16
|
-
.box-sizing(border-box);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
// Body reset
|
|
21
|
-
|
|
22
|
-
html {
|
|
23
|
-
font-size: 10px;
|
|
24
|
-
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
body {
|
|
28
|
-
font-family: @font-family-base;
|
|
29
|
-
font-size: @font-size-base;
|
|
30
|
-
line-height: @line-height-base;
|
|
31
|
-
color: @text-color;
|
|
32
|
-
background-color: @body-bg;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// Reset fonts for relevant elements
|
|
36
|
-
input,
|
|
37
|
-
button,
|
|
38
|
-
select,
|
|
39
|
-
textarea {
|
|
40
|
-
font-family: inherit;
|
|
41
|
-
font-size: inherit;
|
|
42
|
-
line-height: inherit;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
// Links
|
|
47
|
-
|
|
48
|
-
a {
|
|
49
|
-
color: @link-color;
|
|
50
|
-
text-decoration: none;
|
|
51
|
-
|
|
52
|
-
&:hover,
|
|
53
|
-
&:focus {
|
|
54
|
-
color: @link-hover-color;
|
|
55
|
-
text-decoration: @link-hover-decoration;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&:focus {
|
|
59
|
-
.tab-focus();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
// Figures
|
|
65
|
-
//
|
|
66
|
-
// We reset this here because previously Normalize had no `figure` margins. This
|
|
67
|
-
// ensures we don't break anyone's use of the element.
|
|
68
|
-
|
|
69
|
-
figure {
|
|
70
|
-
margin: 0;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
// Images
|
|
75
|
-
|
|
76
|
-
img {
|
|
77
|
-
vertical-align: middle;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// Responsive images (ensure images don't scale beyond their parents)
|
|
81
|
-
.img-responsive {
|
|
82
|
-
.img-responsive();
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// Rounded corners
|
|
86
|
-
.img-rounded {
|
|
87
|
-
border-radius: @border-radius-large;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// Image thumbnails
|
|
91
|
-
//
|
|
92
|
-
// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
|
|
93
|
-
.img-thumbnail {
|
|
94
|
-
padding: @thumbnail-padding;
|
|
95
|
-
line-height: @line-height-base;
|
|
96
|
-
background-color: @thumbnail-bg;
|
|
97
|
-
border: 1px solid @thumbnail-border;
|
|
98
|
-
border-radius: @thumbnail-border-radius;
|
|
99
|
-
.transition(all .2s ease-in-out);
|
|
100
|
-
|
|
101
|
-
// Keep them at most 100% wide
|
|
102
|
-
.img-responsive(inline-block);
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// Perfect circle
|
|
106
|
-
.img-circle {
|
|
107
|
-
border-radius: 50%; // set radius in percents
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
// Horizontal rules
|
|
112
|
-
|
|
113
|
-
hr {
|
|
114
|
-
margin-top: @line-height-computed;
|
|
115
|
-
margin-bottom: @line-height-computed;
|
|
116
|
-
border: 0;
|
|
117
|
-
border-top: 1px solid @hr-border;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
// Only display content to screen readers
|
|
122
|
-
//
|
|
123
|
-
// See: http://a11yproject.com/posts/how-to-hide-content/
|
|
124
|
-
|
|
125
|
-
.sr-only {
|
|
126
|
-
position: absolute;
|
|
127
|
-
width: 1px;
|
|
128
|
-
height: 1px;
|
|
129
|
-
margin: -1px;
|
|
130
|
-
padding: 0;
|
|
131
|
-
overflow: hidden;
|
|
132
|
-
clip: rect(0,0,0,0);
|
|
133
|
-
border: 0;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// Use in conjunction with .sr-only to only display content when it's focused.
|
|
137
|
-
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
|
138
|
-
// Credit: HTML5 Boilerplate
|
|
139
|
-
|
|
140
|
-
.sr-only-focusable {
|
|
141
|
-
&:active,
|
|
142
|
-
&:focus {
|
|
143
|
-
position: static;
|
|
144
|
-
width: auto;
|
|
145
|
-
height: auto;
|
|
146
|
-
margin: 0;
|
|
147
|
-
overflow: visible;
|
|
148
|
-
clip: auto;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
// iOS "clickable elements" fix for role="button"
|
|
154
|
-
//
|
|
155
|
-
// Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
|
|
156
|
-
// for traditionally non-focusable elements with role="button"
|
|
157
|
-
// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
|
158
|
-
// Upstream patch for normalize.css submitted: https://github.com/necolas/normalize.css/pull/379 - remove this fix once that is merged
|
|
159
|
-
|
|
160
|
-
[role="button"] {
|
|
161
|
-
cursor: pointer;
|
|
162
|
-
}
|
|
@@ -1,234 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Tables
|
|
3
|
-
// --------------------------------------------------
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
table {
|
|
7
|
-
background-color: @table-bg;
|
|
8
|
-
}
|
|
9
|
-
caption {
|
|
10
|
-
padding-top: @table-cell-padding;
|
|
11
|
-
padding-bottom: @table-cell-padding;
|
|
12
|
-
color: @text-muted;
|
|
13
|
-
text-align: left;
|
|
14
|
-
}
|
|
15
|
-
th {
|
|
16
|
-
text-align: left;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
// Baseline styles
|
|
21
|
-
|
|
22
|
-
.table {
|
|
23
|
-
width: 100%;
|
|
24
|
-
max-width: 100%;
|
|
25
|
-
margin-bottom: @line-height-computed;
|
|
26
|
-
// Cells
|
|
27
|
-
> thead,
|
|
28
|
-
> tbody,
|
|
29
|
-
> tfoot {
|
|
30
|
-
> tr {
|
|
31
|
-
> th,
|
|
32
|
-
> td {
|
|
33
|
-
padding: @table-cell-padding;
|
|
34
|
-
line-height: @line-height-base;
|
|
35
|
-
vertical-align: top;
|
|
36
|
-
border-top: 1px solid @table-border-color;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
// Bottom align for column headings
|
|
41
|
-
> thead > tr > th {
|
|
42
|
-
vertical-align: bottom;
|
|
43
|
-
border-bottom: 2px solid @table-border-color;
|
|
44
|
-
}
|
|
45
|
-
// Remove top border from thead by default
|
|
46
|
-
> caption + thead,
|
|
47
|
-
> colgroup + thead,
|
|
48
|
-
> thead:first-child {
|
|
49
|
-
> tr:first-child {
|
|
50
|
-
> th,
|
|
51
|
-
> td {
|
|
52
|
-
border-top: 0;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
// Account for multiple tbody instances
|
|
57
|
-
> tbody + tbody {
|
|
58
|
-
border-top: 2px solid @table-border-color;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// Nesting
|
|
62
|
-
.table {
|
|
63
|
-
background-color: @body-bg;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
// Condensed table w/ half padding
|
|
69
|
-
|
|
70
|
-
.table-condensed {
|
|
71
|
-
> thead,
|
|
72
|
-
> tbody,
|
|
73
|
-
> tfoot {
|
|
74
|
-
> tr {
|
|
75
|
-
> th,
|
|
76
|
-
> td {
|
|
77
|
-
padding: @table-condensed-cell-padding;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
// Bordered version
|
|
85
|
-
//
|
|
86
|
-
// Add borders all around the table and between all the columns.
|
|
87
|
-
|
|
88
|
-
.table-bordered {
|
|
89
|
-
border: 1px solid @table-border-color;
|
|
90
|
-
> thead,
|
|
91
|
-
> tbody,
|
|
92
|
-
> tfoot {
|
|
93
|
-
> tr {
|
|
94
|
-
> th,
|
|
95
|
-
> td {
|
|
96
|
-
border: 1px solid @table-border-color;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
> thead > tr {
|
|
101
|
-
> th,
|
|
102
|
-
> td {
|
|
103
|
-
border-bottom-width: 2px;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
// Zebra-striping
|
|
110
|
-
//
|
|
111
|
-
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
|
112
|
-
|
|
113
|
-
.table-striped {
|
|
114
|
-
> tbody > tr:nth-of-type(odd) {
|
|
115
|
-
background-color: @table-bg-accent;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
// Hover effect
|
|
121
|
-
//
|
|
122
|
-
// Placed here since it has to come after the potential zebra striping
|
|
123
|
-
|
|
124
|
-
.table-hover {
|
|
125
|
-
> tbody > tr:hover {
|
|
126
|
-
background-color: @table-bg-hover;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
// Table cell sizing
|
|
132
|
-
//
|
|
133
|
-
// Reset default table behavior
|
|
134
|
-
|
|
135
|
-
table col[class*="col-"] {
|
|
136
|
-
position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
|
|
137
|
-
float: none;
|
|
138
|
-
display: table-column;
|
|
139
|
-
}
|
|
140
|
-
table {
|
|
141
|
-
td,
|
|
142
|
-
th {
|
|
143
|
-
&[class*="col-"] {
|
|
144
|
-
position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
|
|
145
|
-
float: none;
|
|
146
|
-
display: table-cell;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
// Table backgrounds
|
|
153
|
-
//
|
|
154
|
-
// Exact selectors below required to override `.table-striped` and prevent
|
|
155
|
-
// inheritance to nested tables.
|
|
156
|
-
|
|
157
|
-
// Generate the contextual variants
|
|
158
|
-
.table-row-variant(active; @table-bg-active);
|
|
159
|
-
.table-row-variant(success; @state-success-bg);
|
|
160
|
-
.table-row-variant(info; @state-info-bg);
|
|
161
|
-
.table-row-variant(warning; @state-warning-bg);
|
|
162
|
-
.table-row-variant(danger; @state-danger-bg);
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
// Responsive tables
|
|
166
|
-
//
|
|
167
|
-
// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
|
|
168
|
-
// by enabling horizontal scrolling. Only applies <768px. Everything above that
|
|
169
|
-
// will display normally.
|
|
170
|
-
|
|
171
|
-
.table-responsive {
|
|
172
|
-
overflow-x: auto;
|
|
173
|
-
min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
|
|
174
|
-
|
|
175
|
-
@media screen and (max-width: @screen-xs-max) {
|
|
176
|
-
width: 100%;
|
|
177
|
-
margin-bottom: (@line-height-computed * 0.75);
|
|
178
|
-
overflow-y: hidden;
|
|
179
|
-
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
180
|
-
border: 1px solid @table-border-color;
|
|
181
|
-
|
|
182
|
-
// Tighten up spacing
|
|
183
|
-
> .table {
|
|
184
|
-
margin-bottom: 0;
|
|
185
|
-
|
|
186
|
-
// Ensure the content doesn't wrap
|
|
187
|
-
> thead,
|
|
188
|
-
> tbody,
|
|
189
|
-
> tfoot {
|
|
190
|
-
> tr {
|
|
191
|
-
> th,
|
|
192
|
-
> td {
|
|
193
|
-
white-space: nowrap;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
// Special overrides for the bordered tables
|
|
200
|
-
> .table-bordered {
|
|
201
|
-
border: 0;
|
|
202
|
-
|
|
203
|
-
// Nuke the appropriate borders so that the parent can handle them
|
|
204
|
-
> thead,
|
|
205
|
-
> tbody,
|
|
206
|
-
> tfoot {
|
|
207
|
-
> tr {
|
|
208
|
-
> th:first-child,
|
|
209
|
-
> td:first-child {
|
|
210
|
-
border-left: 0;
|
|
211
|
-
}
|
|
212
|
-
> th:last-child,
|
|
213
|
-
> td:last-child {
|
|
214
|
-
border-right: 0;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// Only nuke the last row's bottom-border in `tbody` and `tfoot` since
|
|
220
|
-
// chances are there will be only one `tr` in a `thead` and that would
|
|
221
|
-
// remove the border altogether.
|
|
222
|
-
> tbody,
|
|
223
|
-
> tfoot {
|
|
224
|
-
> tr:last-child {
|
|
225
|
-
> th,
|
|
226
|
-
> td {
|
|
227
|
-
border-bottom: 0;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
}
|