decidim-toggle 0.1.3
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.
- checksums.yaml +7 -0
- data/.erb-lint.yml +2134 -0
- data/.github/workflows/website.yml +57 -0
- data/.gitignore +13 -0
- data/.gitlab-ci.yml +165 -0
- data/.node-version +1 -0
- data/.rspec +1 -0
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -0
- data/.simplecov +18 -0
- data/CONTRIBUTING.md +17 -0
- data/Gemfile +33 -0
- data/Gemfile.lock +843 -0
- data/LICENSE.md +661 -0
- data/README.md +90 -0
- data/Rakefile +38 -0
- data/app/commands/decidim/toggle/update_authorizations_command.rb +31 -0
- data/app/commands/decidim/toggle/update_emails_command.rb +30 -0
- data/app/commands/decidim/toggle/update_file_upload_settings_command.rb +31 -0
- data/app/commands/decidim/toggle/update_locale_command.rb +47 -0
- data/app/commands/decidim/toggle/update_module_config_command.rb +31 -0
- data/app/commands/decidim/toggle/update_name_command.rb +31 -0
- data/app/commands/decidim/toggle/update_omniauth_command.rb +30 -0
- data/app/commands/decidim/toggle/update_security_command.rb +31 -0
- data/app/controllers/decidim_toggle/system/settings_tab_controller.rb +64 -0
- data/app/forms/decidim/toggle/update_authorizations_form.rb +54 -0
- data/app/forms/decidim/toggle/update_emails_form.rb +28 -0
- data/app/forms/decidim/toggle/update_file_upload_settings_form.rb +26 -0
- data/app/forms/decidim/toggle/update_locale_form.rb +116 -0
- data/app/forms/decidim/toggle/update_name_form.rb +63 -0
- data/app/forms/decidim/toggle/update_omniauth_form.rb +37 -0
- data/app/forms/decidim/toggle/update_security_form.rb +65 -0
- data/app/helpers/decidim/toggle/javascript_config_helper.rb +11 -0
- data/app/helpers/decidim/toggle/system_settings_tab_helper.rb +59 -0
- data/app/models/decidim/toggle/organization_module_config.rb +15 -0
- data/app/overrides/add_toggle_javascript_admin.rb +11 -0
- data/app/overrides/add_toggle_javascript_public.rb +11 -0
- data/app/packs/entrypoints/decidim_toggle.js +3 -0
- data/app/packs/src/decidim/toggle/organization_settings_tabs.js +114 -0
- data/app/packs/stylesheets/decidim/toggle/organization_settings.scss +160 -0
- data/app/views/decidim/system/organizations/edit.html.erb +20 -0
- data/app/views/decidim_toggle/system/organizations/_default_form_tab.html.erb +5 -0
- data/app/views/decidim_toggle/system/organizations/_encryption_not_configured_callout.html.erb +6 -0
- data/app/views/decidim_toggle/system/organizations/_settings_tab_active_tab_field.html.erb +1 -0
- data/app/views/decidim_toggle/system/organizations/_settings_tab_submit.html.erb +4 -0
- data/app/views/decidim_toggle/system/organizations/_settings_tabs.html.erb +31 -0
- data/app/views/decidim_toggle/system/organizations/tabs/_authorizations_tab.html.erb +9 -0
- data/app/views/decidim_toggle/system/organizations/tabs/_emails_tab.html.erb +5 -0
- data/app/views/decidim_toggle/system/organizations/tabs/_file_upload_tab.html.erb +5 -0
- data/app/views/decidim_toggle/system/organizations/tabs/_language_tab.html.erb +35 -0
- data/app/views/decidim_toggle/system/organizations/tabs/_omniauth_tab.html.erb +5 -0
- data/app/views/decidim_toggle/system/organizations/tabs/_security_tab.html.erb +20 -0
- data/app/views/layouts/decidim/toggle/_javascript_config.html.erb +3 -0
- data/bin/check +10 -0
- data/bin/i18n-tasks +27 -0
- data/bin/postversion +14 -0
- data/config/assets.rb +8 -0
- data/config/locales/decidim_toggle_en.yml +58 -0
- data/crowdin.yml +15 -0
- data/db/migrate/20260321120000_create_decidim_toggle_organization_module_configs.rb +20 -0
- data/decidim-toggle.gemspec +35 -0
- data/docker-compose.yml +41 -0
- data/lib/decidim/toggle/engine.rb +62 -0
- data/lib/decidim/toggle/expose_attributes_to_js.rb +26 -0
- data/lib/decidim/toggle/expose_attributes_to_js_validator.rb +32 -0
- data/lib/decidim/toggle/gem_registry.rb +15 -0
- data/lib/decidim/toggle/informative_callouts.rb +76 -0
- data/lib/decidim/toggle/javascript_config.rb +87 -0
- data/lib/decidim/toggle/module_config.rb +64 -0
- data/lib/decidim/toggle/module_config_form.rb +41 -0
- data/lib/decidim/toggle/module_config_i18n.rb +44 -0
- data/lib/decidim/toggle/module_configuration_presenter.rb +55 -0
- data/lib/decidim/toggle/organization_settings_tabs.rb +69 -0
- data/lib/decidim/toggle/settings_form_builder.rb +200 -0
- data/lib/decidim/toggle/settings_tab_item.rb +37 -0
- data/lib/decidim/toggle/settings_tab_registry.rb +109 -0
- data/lib/decidim/toggle/settings_tabs.rb +56 -0
- data/lib/decidim/toggle/tab_form.rb +20 -0
- data/lib/decidim/toggle/version.rb +14 -0
- data/lib/decidim/toggle.rb +36 -0
- data/lib/tasks/decidim/toggle/toggle_upgrade.rake +13 -0
- data/lib/tasks/decidim/toggle/toggle_webpacker.rake +60 -0
- data/log/.gitignore +2 -0
- data/package.json +18 -0
- data/prettier.config.js +15 -0
- data/spec/commands/decidim/toggle/update_authorizations_command_spec.rb +41 -0
- data/spec/commands/decidim/toggle/update_emails_command_spec.rb +84 -0
- data/spec/commands/decidim/toggle/update_file_upload_settings_command_spec.rb +28 -0
- data/spec/commands/decidim/toggle/update_locale_command_spec.rb +53 -0
- data/spec/commands/decidim/toggle/update_module_config_command_spec.rb +38 -0
- data/spec/commands/decidim/toggle/update_name_command_spec.rb +49 -0
- data/spec/commands/decidim/toggle/update_omniauth_command_spec.rb +80 -0
- data/spec/commands/decidim/toggle/update_security_command_spec.rb +25 -0
- data/spec/decidim/toggle/settings_tab_item_spec.rb +34 -0
- data/spec/decidim/toggle/settings_tab_registry_spec.rb +66 -0
- data/spec/decidim/toggle/settings_tabs_spec.rb +60 -0
- data/spec/forms/concerns/decidim/toggle/informative_callouts_spec.rb +48 -0
- data/spec/forms/decidim/toggle/update_authorizations_form_spec.rb +40 -0
- data/spec/forms/decidim/toggle/update_emails_form_spec.rb +35 -0
- data/spec/forms/decidim/toggle/update_file_upload_settings_form_spec.rb +20 -0
- data/spec/forms/decidim/toggle/update_locale_form_spec.rb +64 -0
- data/spec/forms/decidim/toggle/update_name_form_spec.rb +57 -0
- data/spec/forms/decidim/toggle/update_omniauth_form_spec.rb +56 -0
- data/spec/forms/decidim/toggle/update_security_form_spec.rb +32 -0
- data/spec/helpers/decidim/toggle/system_settings_tab_helper_spec.rb +99 -0
- data/spec/lib/decidim/toggle/expose_attributes_to_js_spec.rb +31 -0
- data/spec/lib/decidim/toggle/expose_attributes_to_js_validator_spec.rb +30 -0
- data/spec/lib/decidim/toggle/gem_registry_spec.rb +30 -0
- data/spec/lib/decidim/toggle/javascript_config_spec.rb +169 -0
- data/spec/lib/decidim/toggle/module_config_form_spec.rb +45 -0
- data/spec/lib/decidim/toggle/module_config_spec.rb +74 -0
- data/spec/lib/decidim/toggle/module_configuration_presenter_spec.rb +53 -0
- data/spec/lib/decidim/toggle/settings_form_builder_spec.rb +115 -0
- data/spec/requests/decidim_toggle/system/settings_tab_spec.rb +144 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/support/decidim_factories.rb +3 -0
- data/spec/support/devise.rb +5 -0
- data/spec/system/decidim_toggle/javascript_config_spec.rb +56 -0
- data/website/.gitignore +4 -0
- data/website/docs/developer/_category_.json +8 -0
- data/website/docs/developer/code-of-conduct.md +99 -0
- data/website/docs/developer/contribute.md +50 -0
- data/website/docs/developer/deface-usage.md +37 -0
- data/website/docs/developer/documentation.md +58 -0
- data/website/docs/developer/error-handling.md +51 -0
- data/website/docs/developer/tab-registry.md +51 -0
- data/website/docs/developer/view-customization.md +49 -0
- data/website/docs/index.md +80 -0
- data/website/docs/integrate/_category_.json +8 -0
- data/website/docs/integrate/attributes.md +121 -0
- data/website/docs/integrate/customize-views.md +62 -0
- data/website/docs/integrate/index.md +38 -0
- data/website/docs/integrate/informative_callout.md +80 -0
- data/website/docs/integrate/javascript.md +84 -0
- data/website/docs/integrate/labels.md +91 -0
- data/website/docs/integrate/quickstart.md +77 -0
- data/website/docusaurus.config.ts +100 -0
- data/website/package.json +31 -0
- data/website/sidebars.ts +7 -0
- data/website/src/css/custom.css +37 -0
- data/website/static/img/logo.svg +1 -0
- data/website/static/img/schema_overview.png +0 -0
- data/website/static/img/screenshot_informative_callouts.png +0 -0
- data/website/static/img/screenshot_saved_flash.png +0 -0
- data/website/static/img/screenshots_locale_tab.png +0 -0
- data/website/static/img/screenshots_name_tab.png +0 -0
- data/website/static/img/screenshots_security_tab.png +0 -0
- data/website/tsconfig.json +6 -0
- data/website/yarn.lock +8336 -0
- data/yarn.lock +13 -0
- metadata +249 -0
data/.erb-lint.yml
ADDED
|
@@ -0,0 +1,2134 @@
|
|
|
1
|
+
|
|
2
|
+
glob: "app/{cells,views}/**/*.erb"
|
|
3
|
+
exclude:
|
|
4
|
+
- '**/vendor/**/*'
|
|
5
|
+
- '**/node_modules/**/*'
|
|
6
|
+
- '**/*.js.erb'
|
|
7
|
+
|
|
8
|
+
linters:
|
|
9
|
+
ErbSafety:
|
|
10
|
+
enabled: true
|
|
11
|
+
|
|
12
|
+
ExtraNewline:
|
|
13
|
+
enabled: true
|
|
14
|
+
|
|
15
|
+
FinalNewline:
|
|
16
|
+
enabled: true
|
|
17
|
+
|
|
18
|
+
RequireInputAutocomplete:
|
|
19
|
+
enabled: false
|
|
20
|
+
|
|
21
|
+
SpaceAroundErbTag:
|
|
22
|
+
enabled: true
|
|
23
|
+
|
|
24
|
+
AllowedScriptType:
|
|
25
|
+
enabled: true
|
|
26
|
+
allowed_types:
|
|
27
|
+
- text/javascript
|
|
28
|
+
- text/template
|
|
29
|
+
- application/ld+json
|
|
30
|
+
|
|
31
|
+
DeprecatedClasses:
|
|
32
|
+
enabled: true
|
|
33
|
+
exclude:
|
|
34
|
+
- 'decidim_app-design/**/*.erb'
|
|
35
|
+
addendum: "Please remove it from code."
|
|
36
|
+
rule_set:
|
|
37
|
+
- deprecated: ['process-content']
|
|
38
|
+
suggestion: "This class is deprecated. Please remove the surrounding element"
|
|
39
|
+
- deprecated: ['xlarge-[\w]*']
|
|
40
|
+
suggestion: "Foundation classes are deprecated."
|
|
41
|
+
- suggestion: "Please use the new class instead"
|
|
42
|
+
deprecated:
|
|
43
|
+
- CodeMirror-fullscreen
|
|
44
|
+
- CodeMirror-placeholder
|
|
45
|
+
- CodeMirror-rtl
|
|
46
|
+
- CodeMirror-rulers
|
|
47
|
+
- CodeMirror-sided
|
|
48
|
+
- Select
|
|
49
|
+
- Select--multi
|
|
50
|
+
- Select--rtl
|
|
51
|
+
- Select--single
|
|
52
|
+
- Select-aria-only
|
|
53
|
+
- Select-arrow
|
|
54
|
+
- Select-arrow-zone
|
|
55
|
+
- Select-clear
|
|
56
|
+
- Select-clear-zone
|
|
57
|
+
- Select-control
|
|
58
|
+
- Select-input
|
|
59
|
+
- Select-loading
|
|
60
|
+
- Select-loading-zone
|
|
61
|
+
- Select-menu
|
|
62
|
+
- Select-menu-outer
|
|
63
|
+
- Select-multi-value-wrapper
|
|
64
|
+
- Select-noresults
|
|
65
|
+
- Select-option
|
|
66
|
+
- Select-placeholder
|
|
67
|
+
- Select-value
|
|
68
|
+
- Select-value-icon
|
|
69
|
+
- Select-value-label
|
|
70
|
+
- about-link
|
|
71
|
+
- absolutes
|
|
72
|
+
- accordion
|
|
73
|
+
- accordion-content
|
|
74
|
+
- accordion-item
|
|
75
|
+
- accordion-menu
|
|
76
|
+
- accordion-title
|
|
77
|
+
- accordion[disabled]
|
|
78
|
+
- account-notification
|
|
79
|
+
- accountability
|
|
80
|
+
- action-icon--disabled
|
|
81
|
+
- action-icon--hide
|
|
82
|
+
- action-icon--highlighted
|
|
83
|
+
- action-icon--success
|
|
84
|
+
- actions
|
|
85
|
+
- actions-wrapper
|
|
86
|
+
- active-uploads
|
|
87
|
+
- add-comment--reply
|
|
88
|
+
- add-message
|
|
89
|
+
- address--alone
|
|
90
|
+
- address__details
|
|
91
|
+
- address__icon
|
|
92
|
+
- address__info
|
|
93
|
+
- admin-email
|
|
94
|
+
- agenda
|
|
95
|
+
- alert[disabled]
|
|
96
|
+
- align-bottom
|
|
97
|
+
- align-center
|
|
98
|
+
- align-center-middle
|
|
99
|
+
- align-justify
|
|
100
|
+
- align-left
|
|
101
|
+
- align-self-bottom
|
|
102
|
+
- align-self-middle
|
|
103
|
+
- align-self-stretch
|
|
104
|
+
- align-self-top
|
|
105
|
+
- align-spaced
|
|
106
|
+
- align-stretch
|
|
107
|
+
- align-top
|
|
108
|
+
- animate-height
|
|
109
|
+
- announcement
|
|
110
|
+
- answer-questionnaire__steps
|
|
111
|
+
- areachart
|
|
112
|
+
- arrow-only
|
|
113
|
+
- as-card
|
|
114
|
+
- as-circle
|
|
115
|
+
- as-text
|
|
116
|
+
- aspect-ratio-16-9
|
|
117
|
+
- assembly-header__title
|
|
118
|
+
- assembly-title-summary
|
|
119
|
+
- assistant_container
|
|
120
|
+
- assistant_recommendations
|
|
121
|
+
- assistant_values
|
|
122
|
+
- author--flex
|
|
123
|
+
- author--inline
|
|
124
|
+
- author-data
|
|
125
|
+
- author-data--big
|
|
126
|
+
- author-data--nopadding
|
|
127
|
+
- author-data--small
|
|
128
|
+
- author-data__extra
|
|
129
|
+
- author-data__main
|
|
130
|
+
- author__avatar--small
|
|
131
|
+
- author__badge
|
|
132
|
+
- author__date
|
|
133
|
+
- author__name--container
|
|
134
|
+
- author__nickname
|
|
135
|
+
- author__verified
|
|
136
|
+
- auto
|
|
137
|
+
- autocomplete-suggestion
|
|
138
|
+
- autocomplete-suggestions
|
|
139
|
+
- avatar
|
|
140
|
+
- awesome-edit-config
|
|
141
|
+
- awesome-iframe
|
|
142
|
+
- awesome_autosave-notice
|
|
143
|
+
- awesome_map-title-control
|
|
144
|
+
- awesome_map-toggle_all_tags
|
|
145
|
+
- background
|
|
146
|
+
- badge
|
|
147
|
+
- badge-card__content
|
|
148
|
+
- badge-container
|
|
149
|
+
- badge-level
|
|
150
|
+
- badge-tip
|
|
151
|
+
- badge-tip--inline
|
|
152
|
+
- badge__logo
|
|
153
|
+
- badge__logo--small
|
|
154
|
+
- before-content
|
|
155
|
+
- bg-alert
|
|
156
|
+
- bg-muted
|
|
157
|
+
- bg-secondary
|
|
158
|
+
- bg-warning
|
|
159
|
+
- bio-acts
|
|
160
|
+
- bio-extended
|
|
161
|
+
- block-banner
|
|
162
|
+
- bootstrap-tagsinput
|
|
163
|
+
- box__search
|
|
164
|
+
- breadcrumb--separator
|
|
165
|
+
- breadcrumbs
|
|
166
|
+
- budget-list__action
|
|
167
|
+
- budget-list__action--disabled
|
|
168
|
+
- budget-list__data
|
|
169
|
+
- budget-list__data--added
|
|
170
|
+
- budget-list__data__icon
|
|
171
|
+
- budget-list__data__number
|
|
172
|
+
- budget-list__data__votes
|
|
173
|
+
- budget-list__image
|
|
174
|
+
- budget-list__item
|
|
175
|
+
- budget-list__item-cell
|
|
176
|
+
- budget-list__number
|
|
177
|
+
- budget-list__number-show-for-medium
|
|
178
|
+
- budget-list__text
|
|
179
|
+
- budget-list__title
|
|
180
|
+
- budget-progress--fixed
|
|
181
|
+
- budget-progress__meter
|
|
182
|
+
- budget-summary__progressbox--fixed
|
|
183
|
+
- budget-summary__selected
|
|
184
|
+
- budget-summary__selected-list
|
|
185
|
+
- budget-summary__selected-number
|
|
186
|
+
- budget-summary__total
|
|
187
|
+
- bulleted
|
|
188
|
+
- button--double
|
|
189
|
+
- button--facebook
|
|
190
|
+
- button--frosted
|
|
191
|
+
- button--google
|
|
192
|
+
- button--icon
|
|
193
|
+
- button--muted
|
|
194
|
+
- button--nomargin
|
|
195
|
+
- button--right
|
|
196
|
+
- button--shadow
|
|
197
|
+
- button--simple
|
|
198
|
+
- button--social
|
|
199
|
+
- button--social--mini
|
|
200
|
+
- button--social__icon
|
|
201
|
+
- button--social__text
|
|
202
|
+
- button--twitter
|
|
203
|
+
- button--vote-button
|
|
204
|
+
- button-group
|
|
205
|
+
- button-group--collapse
|
|
206
|
+
- button-wrapper
|
|
207
|
+
- button__info
|
|
208
|
+
- buttons
|
|
209
|
+
- buttons__column
|
|
210
|
+
- buttons__row
|
|
211
|
+
- calendar
|
|
212
|
+
- calendar-url-description
|
|
213
|
+
- calendar_url_input
|
|
214
|
+
- callout--full
|
|
215
|
+
- callout-wrapper
|
|
216
|
+
- card--collapsed
|
|
217
|
+
- card--full
|
|
218
|
+
- card--full__image
|
|
219
|
+
- card--full__image-wrapper
|
|
220
|
+
- card--list
|
|
221
|
+
- card--list__annotation
|
|
222
|
+
- card--list__author
|
|
223
|
+
- card--list__check
|
|
224
|
+
- card--list__check--disabled
|
|
225
|
+
- card--list__check--inline
|
|
226
|
+
- card--list__counter
|
|
227
|
+
- card--list__data
|
|
228
|
+
- card--list__data-added
|
|
229
|
+
- card--list__data__icon
|
|
230
|
+
- card--list__data__icon--lg
|
|
231
|
+
- card--list__data__number
|
|
232
|
+
- card--list__text--top
|
|
233
|
+
- card--list__titled-text
|
|
234
|
+
- card--meta
|
|
235
|
+
- card--mini
|
|
236
|
+
- card--nomargin
|
|
237
|
+
- card--picture-offset
|
|
238
|
+
- card--process
|
|
239
|
+
- card--process__column
|
|
240
|
+
- card--process__row
|
|
241
|
+
- card--process__small
|
|
242
|
+
- card--secondary
|
|
243
|
+
- card--stack
|
|
244
|
+
- card--widget
|
|
245
|
+
- card-data
|
|
246
|
+
- card-data__item
|
|
247
|
+
- card-data__item--centerblock
|
|
248
|
+
- card-data__item--expand
|
|
249
|
+
- card-data__item--multiple
|
|
250
|
+
- card-data__item__number
|
|
251
|
+
- card-divider--reduced
|
|
252
|
+
- card-image
|
|
253
|
+
- card-recommandation
|
|
254
|
+
- card__activity-date
|
|
255
|
+
- card__author
|
|
256
|
+
- card__block
|
|
257
|
+
- card__button
|
|
258
|
+
- card__content
|
|
259
|
+
- card__content--center
|
|
260
|
+
- card__content--img
|
|
261
|
+
- card__datetime
|
|
262
|
+
- card__datetime__date
|
|
263
|
+
- card__datetime__month
|
|
264
|
+
- card__datetime__time
|
|
265
|
+
- card__extra
|
|
266
|
+
- card__footer
|
|
267
|
+
- card__footer--data
|
|
268
|
+
- card__footer--transparent
|
|
269
|
+
- card__header
|
|
270
|
+
- card__icon-close
|
|
271
|
+
- card__icon-open
|
|
272
|
+
- card__icondata
|
|
273
|
+
- card__icondata--address
|
|
274
|
+
- card__image
|
|
275
|
+
- card__image--larger
|
|
276
|
+
- card__image--smaller
|
|
277
|
+
- card__image-top
|
|
278
|
+
- card__img
|
|
279
|
+
- card__label
|
|
280
|
+
- card__link--block
|
|
281
|
+
- card__popularity
|
|
282
|
+
- card__popularity__data
|
|
283
|
+
- card__row
|
|
284
|
+
- card__status
|
|
285
|
+
- card__support
|
|
286
|
+
- card__support__data
|
|
287
|
+
- card__support__data--left
|
|
288
|
+
- card__support__number
|
|
289
|
+
- card__text
|
|
290
|
+
- card__text--category
|
|
291
|
+
- card__text--paragraph
|
|
292
|
+
- card__text--separated-mid-dot
|
|
293
|
+
- card__text--status
|
|
294
|
+
- card__title
|
|
295
|
+
- card__top
|
|
296
|
+
- card__type
|
|
297
|
+
- card__vote-number
|
|
298
|
+
- card__voting
|
|
299
|
+
- categories--group
|
|
300
|
+
- categories--header
|
|
301
|
+
- categories-container
|
|
302
|
+
- category--count
|
|
303
|
+
- category--elements
|
|
304
|
+
- category--line
|
|
305
|
+
- category--title
|
|
306
|
+
- category-row
|
|
307
|
+
- category-wrapper
|
|
308
|
+
- cell-block
|
|
309
|
+
- cell-block-container
|
|
310
|
+
- cell-block-y
|
|
311
|
+
- center
|
|
312
|
+
- char-counter
|
|
313
|
+
- char-counter--excess
|
|
314
|
+
- characters
|
|
315
|
+
- chart-tooltip
|
|
316
|
+
- check-box-collection
|
|
317
|
+
- check-radio
|
|
318
|
+
- check-radio-collection
|
|
319
|
+
- check-radio-group
|
|
320
|
+
- checkboxes
|
|
321
|
+
- choose-template-preview
|
|
322
|
+
- cite-block
|
|
323
|
+
- class_
|
|
324
|
+
- clear
|
|
325
|
+
- clear[disabled]
|
|
326
|
+
- clearfix
|
|
327
|
+
- cm-header-1
|
|
328
|
+
- cm-header-2
|
|
329
|
+
- cm-header-3
|
|
330
|
+
- cm-header-4
|
|
331
|
+
- cm-type
|
|
332
|
+
- cm-url
|
|
333
|
+
- code-inline
|
|
334
|
+
- collaborative-draft-status
|
|
335
|
+
- collapsible-list
|
|
336
|
+
- collapsible-list__see-less
|
|
337
|
+
- collapsible-list__see-more
|
|
338
|
+
- collection-input
|
|
339
|
+
- collection-sort-controls
|
|
340
|
+
- color-box
|
|
341
|
+
- column-block
|
|
342
|
+
- comment--nested
|
|
343
|
+
- comment--nested--alt
|
|
344
|
+
- comment-thread__title
|
|
345
|
+
- comment__additionalreply
|
|
346
|
+
- comment__edited
|
|
347
|
+
- comment__footer
|
|
348
|
+
- comment__header__context-menu
|
|
349
|
+
- comment__header__context-menu__content
|
|
350
|
+
- comment__header__context-menu__content-item
|
|
351
|
+
- comment__hide
|
|
352
|
+
- comment__is-open
|
|
353
|
+
- comment__quote
|
|
354
|
+
- comment__reply
|
|
355
|
+
- comment__reply[data-toggle]
|
|
356
|
+
- comment__text-is-closed
|
|
357
|
+
- comment__text-is-open
|
|
358
|
+
- comment__votes--down
|
|
359
|
+
- committee_link
|
|
360
|
+
- compact
|
|
361
|
+
- component-counter--inline
|
|
362
|
+
- component-counter--off
|
|
363
|
+
- component_id
|
|
364
|
+
- component_manifest
|
|
365
|
+
- conference--date
|
|
366
|
+
- conference-media
|
|
367
|
+
- conference-nav
|
|
368
|
+
- conference-programme
|
|
369
|
+
- conference-registration
|
|
370
|
+
- conference-speaker
|
|
371
|
+
- confirm-content
|
|
372
|
+
- confirm-reveal
|
|
373
|
+
- confirmation-code-inputs
|
|
374
|
+
- constraint-none
|
|
375
|
+
- constraints-editor
|
|
376
|
+
- constraints-list
|
|
377
|
+
- conversation
|
|
378
|
+
- conversation-chat
|
|
379
|
+
- conversation-chat--offset
|
|
380
|
+
- conversation-groups
|
|
381
|
+
- conversation-header
|
|
382
|
+
- conversation-reply
|
|
383
|
+
- conversation-reply--offset
|
|
384
|
+
- conversations
|
|
385
|
+
- creation_date_status
|
|
386
|
+
- current
|
|
387
|
+
- custom-error
|
|
388
|
+
- custom-redirections-table
|
|
389
|
+
- dark
|
|
390
|
+
- data-extra
|
|
391
|
+
- data-name
|
|
392
|
+
- data-role
|
|
393
|
+
- data-title__main
|
|
394
|
+
- data-title__over
|
|
395
|
+
- data-title__sub
|
|
396
|
+
- dataconsent-detail-row
|
|
397
|
+
- dataconsent-details-wrapper
|
|
398
|
+
- dataconsent-warning
|
|
399
|
+
- date-switch
|
|
400
|
+
- day
|
|
401
|
+
- dc-button-wrapper
|
|
402
|
+
- dc-buttons-wrapper
|
|
403
|
+
- dc-dialog
|
|
404
|
+
- dc-switch
|
|
405
|
+
- dc-title
|
|
406
|
+
- decidim_awesome
|
|
407
|
+
- decidim_awesome-custom_fields
|
|
408
|
+
- decidim_awesome-form
|
|
409
|
+
- definition-data
|
|
410
|
+
- definition-data__item
|
|
411
|
+
- definition-data__item--double
|
|
412
|
+
- definition-data__number
|
|
413
|
+
- definition-data__text
|
|
414
|
+
- definition-data__title
|
|
415
|
+
- desc_level
|
|
416
|
+
- desc_level_last
|
|
417
|
+
- desc_levels
|
|
418
|
+
- detail-titles
|
|
419
|
+
- diff
|
|
420
|
+
- diff-block-info
|
|
421
|
+
- diff-comment
|
|
422
|
+
- diff-direction-label
|
|
423
|
+
- diff-view-by
|
|
424
|
+
- diff-view-by__dropdown
|
|
425
|
+
- disabled-for-preview
|
|
426
|
+
- disabled-iframe
|
|
427
|
+
- disabled-tribute-element
|
|
428
|
+
- display-block
|
|
429
|
+
- display-inline
|
|
430
|
+
- display-inline-block
|
|
431
|
+
- display-table
|
|
432
|
+
- display-table-cell
|
|
433
|
+
- district-number
|
|
434
|
+
- docs__container
|
|
435
|
+
- docs__content
|
|
436
|
+
- drilldown
|
|
437
|
+
- drilldown-submenu-cover-previous
|
|
438
|
+
- dropdown-inverted
|
|
439
|
+
- dropdown-menu-inverted_label
|
|
440
|
+
- dropzone-container
|
|
441
|
+
- dynamic-uploads
|
|
442
|
+
- edit_component
|
|
443
|
+
- editor
|
|
444
|
+
- editor-loading
|
|
445
|
+
- editor-preview
|
|
446
|
+
- editor-preview-active
|
|
447
|
+
- editor-preview-active-side
|
|
448
|
+
- editor-preview-side
|
|
449
|
+
- editor-statusbar
|
|
450
|
+
- ellipsis
|
|
451
|
+
- email-preview
|
|
452
|
+
- embed-container
|
|
453
|
+
- embed__code
|
|
454
|
+
- end
|
|
455
|
+
- expanded-text
|
|
456
|
+
- external-domain-warning
|
|
457
|
+
- external-link-cancel
|
|
458
|
+
- external-link-container
|
|
459
|
+
- external-link-indicator
|
|
460
|
+
- external-link-page-content
|
|
461
|
+
- external-link-url
|
|
462
|
+
- extra
|
|
463
|
+
- extra--text
|
|
464
|
+
- extra__date
|
|
465
|
+
- extra__date-container
|
|
466
|
+
- extra__month
|
|
467
|
+
- extra__popularity
|
|
468
|
+
- extra__suport-number
|
|
469
|
+
- extra__suport-text
|
|
470
|
+
- extra__table-list__subcategory
|
|
471
|
+
- extra__time
|
|
472
|
+
- field
|
|
473
|
+
- fieldset
|
|
474
|
+
- file-name-span
|
|
475
|
+
- filled
|
|
476
|
+
- filter-tag
|
|
477
|
+
- filter-tag__close
|
|
478
|
+
- filter-tags
|
|
479
|
+
- filter-tags__title
|
|
480
|
+
- filters
|
|
481
|
+
- filters-controls
|
|
482
|
+
- filters-controls__trigger
|
|
483
|
+
- filters-wrapper
|
|
484
|
+
- filters__content
|
|
485
|
+
- filters__has-subfilters
|
|
486
|
+
- filters__help
|
|
487
|
+
- filters__icon-is-closed
|
|
488
|
+
- filters__icon-is-open
|
|
489
|
+
- filters__info__icon
|
|
490
|
+
- filters__info__title
|
|
491
|
+
- filters__is-open
|
|
492
|
+
- filters__left-legend
|
|
493
|
+
- filters__search
|
|
494
|
+
- filters__section--general
|
|
495
|
+
- filters__subfilters
|
|
496
|
+
- fingerprint-dialog
|
|
497
|
+
- fingerprint-source
|
|
498
|
+
- fingerprint-value
|
|
499
|
+
- flag
|
|
500
|
+
- flex--cb
|
|
501
|
+
- flex--cc
|
|
502
|
+
- flex--fsb
|
|
503
|
+
- flex--fsc
|
|
504
|
+
- flex--sbc
|
|
505
|
+
- flex--sbe
|
|
506
|
+
- flex-center
|
|
507
|
+
- flex-child-auto
|
|
508
|
+
- flex-child-grow
|
|
509
|
+
- flex-child-shrink
|
|
510
|
+
- flex-container
|
|
511
|
+
- flex-dir-column
|
|
512
|
+
- flex-dir-column-reverse
|
|
513
|
+
- flex-dir-row
|
|
514
|
+
- flex-dir-row-reverse
|
|
515
|
+
- flex-gap--1
|
|
516
|
+
- flex-gap--2
|
|
517
|
+
- flex-horizontal
|
|
518
|
+
- flex-video
|
|
519
|
+
- floating-helper
|
|
520
|
+
- floating-helper__bottom
|
|
521
|
+
- floating-helper__content
|
|
522
|
+
- floating-helper__content-close
|
|
523
|
+
- floating-helper__content-inner
|
|
524
|
+
- floating-helper__icon
|
|
525
|
+
- floating-helper__icon-big
|
|
526
|
+
- floating-helper__layout
|
|
527
|
+
- floating-helper__link
|
|
528
|
+
- floating-helper__text
|
|
529
|
+
- floating-helper__trigger
|
|
530
|
+
- floating-helper__wrapper
|
|
531
|
+
- fluid
|
|
532
|
+
- follow-button
|
|
533
|
+
- footer-nav
|
|
534
|
+
- footer-separator
|
|
535
|
+
- footer-social
|
|
536
|
+
- footer-social__icon
|
|
537
|
+
- form-builder
|
|
538
|
+
- form-control
|
|
539
|
+
- form-control[type=richtext]
|
|
540
|
+
- form-conversations-submit
|
|
541
|
+
- form-general-submit
|
|
542
|
+
- form-group
|
|
543
|
+
- form-input-extra-after
|
|
544
|
+
- form-input-extra-before
|
|
545
|
+
- form-submit
|
|
546
|
+
- form-wrap
|
|
547
|
+
- foundation-mq
|
|
548
|
+
- fullscreen
|
|
549
|
+
- function_
|
|
550
|
+
- gallery-item
|
|
551
|
+
- gallery__container
|
|
552
|
+
- gallery__item
|
|
553
|
+
- google-map
|
|
554
|
+
- grid-container
|
|
555
|
+
- grid-frame
|
|
556
|
+
- grid-margin-y
|
|
557
|
+
- grid-padding-x
|
|
558
|
+
- grid-padding-y
|
|
559
|
+
- grid-y
|
|
560
|
+
- gutter-medium
|
|
561
|
+
- gutter-small
|
|
562
|
+
- has-process-title
|
|
563
|
+
- has-reveal-bottom
|
|
564
|
+
- has-reveal-left
|
|
565
|
+
- has-reveal-right
|
|
566
|
+
- has-reveal-top
|
|
567
|
+
- has-submenu-toggle
|
|
568
|
+
- has-tip
|
|
569
|
+
- has-transition-overlap
|
|
570
|
+
- has-transition-push
|
|
571
|
+
- has-tribute
|
|
572
|
+
- has-value
|
|
573
|
+
- hashtags-container
|
|
574
|
+
- hashtags__container
|
|
575
|
+
- hashtags__container--textarea
|
|
576
|
+
- heading-small
|
|
577
|
+
- heading1
|
|
578
|
+
- heading2
|
|
579
|
+
- heading3
|
|
580
|
+
- heading4
|
|
581
|
+
- heading5
|
|
582
|
+
- heading6
|
|
583
|
+
- help
|
|
584
|
+
- help-title_and_description
|
|
585
|
+
- help-tooltip
|
|
586
|
+
- hero-cta
|
|
587
|
+
- hero-heading
|
|
588
|
+
- hero__boxes
|
|
589
|
+
- hidden-section
|
|
590
|
+
- hide-comment-replies
|
|
591
|
+
- hide-for-dark-mode
|
|
592
|
+
- hide-for-ie
|
|
593
|
+
- hide-for-landscape
|
|
594
|
+
- hide-for-large-only
|
|
595
|
+
- hide-for-medium
|
|
596
|
+
- hide-for-medium-only
|
|
597
|
+
- hide-for-mediumlarge
|
|
598
|
+
- hide-for-mediumlarge-only
|
|
599
|
+
- hide-for-portrait
|
|
600
|
+
- hide-for-print
|
|
601
|
+
- hide-for-small-only
|
|
602
|
+
- hide-for-smallmedium
|
|
603
|
+
- hide-for-smallmedium-only
|
|
604
|
+
- hide-for-sticky
|
|
605
|
+
- hide-for-xlarge
|
|
606
|
+
- hide-for-xlarge-only
|
|
607
|
+
- highlight_alternative
|
|
608
|
+
- highligted-content-banner
|
|
609
|
+
- highligted-content-banner__container
|
|
610
|
+
- hljs
|
|
611
|
+
- hljs-addition
|
|
612
|
+
- hljs-attr
|
|
613
|
+
- hljs-attribute
|
|
614
|
+
- hljs-built_in
|
|
615
|
+
- hljs-bullet
|
|
616
|
+
- hljs-code
|
|
617
|
+
- hljs-comment
|
|
618
|
+
- hljs-deletion
|
|
619
|
+
- hljs-doctag
|
|
620
|
+
- hljs-emphasis
|
|
621
|
+
- hljs-formula
|
|
622
|
+
- hljs-keyword
|
|
623
|
+
- hljs-literal
|
|
624
|
+
- hljs-meta
|
|
625
|
+
- hljs-name
|
|
626
|
+
- hljs-number
|
|
627
|
+
- hljs-operator
|
|
628
|
+
- hljs-quote
|
|
629
|
+
- hljs-regexp
|
|
630
|
+
- hljs-section
|
|
631
|
+
- hljs-selector-attr
|
|
632
|
+
- hljs-selector-class
|
|
633
|
+
- hljs-selector-id
|
|
634
|
+
- hljs-selector-pseudo
|
|
635
|
+
- hljs-selector-tag
|
|
636
|
+
- hljs-string
|
|
637
|
+
- hljs-strong
|
|
638
|
+
- hljs-subst
|
|
639
|
+
- hljs-symbol
|
|
640
|
+
- hljs-template-tag
|
|
641
|
+
- hljs-template-variable
|
|
642
|
+
- hljs-title
|
|
643
|
+
- hljs-type
|
|
644
|
+
- hljs-variable
|
|
645
|
+
- hollow
|
|
646
|
+
- hollow[disabled]
|
|
647
|
+
- home-bullet
|
|
648
|
+
- home-bullet__desc
|
|
649
|
+
- home-bullet__icon
|
|
650
|
+
- home-bullets
|
|
651
|
+
- home-map
|
|
652
|
+
- home-section
|
|
653
|
+
- home-section__cta
|
|
654
|
+
- home-stats
|
|
655
|
+
- home-stats__highlight
|
|
656
|
+
- home-stats__lowlight
|
|
657
|
+
- homepage_interactive_map
|
|
658
|
+
- horizontal
|
|
659
|
+
- hover
|
|
660
|
+
- hover-section
|
|
661
|
+
- icon--action
|
|
662
|
+
- icon--after
|
|
663
|
+
- icon--arrow-bottom
|
|
664
|
+
- icon--before
|
|
665
|
+
- icon--big
|
|
666
|
+
- icon--component
|
|
667
|
+
- icon--container
|
|
668
|
+
- icon--large
|
|
669
|
+
- icon--move
|
|
670
|
+
- icon--outline
|
|
671
|
+
- icon--share
|
|
672
|
+
- icon--small
|
|
673
|
+
- icon-bottom
|
|
674
|
+
- icon-highlight
|
|
675
|
+
- icon-left
|
|
676
|
+
- icon-right
|
|
677
|
+
- icon-top
|
|
678
|
+
- icon-unpublished
|
|
679
|
+
- icon-wrap
|
|
680
|
+
- icons
|
|
681
|
+
- image-dimensions-help
|
|
682
|
+
- impersonation-warning
|
|
683
|
+
- impersonation-warning__action
|
|
684
|
+
- in-canvas-for-large
|
|
685
|
+
- in-canvas-for-medium
|
|
686
|
+
- in-canvas-for-mediumlarge
|
|
687
|
+
- in-canvas-for-smallmedium
|
|
688
|
+
- in-canvas-for-xlarge
|
|
689
|
+
- inactive
|
|
690
|
+
- info-details
|
|
691
|
+
- info-header
|
|
692
|
+
- info-image
|
|
693
|
+
- inherited__
|
|
694
|
+
- initiative-authors
|
|
695
|
+
- initiative-statistics
|
|
696
|
+
- inline-filters
|
|
697
|
+
- input-field
|
|
698
|
+
- input-group-field
|
|
699
|
+
- input-group-label
|
|
700
|
+
- input-inline-group
|
|
701
|
+
- input__tag
|
|
702
|
+
- intro
|
|
703
|
+
- invite-users-link
|
|
704
|
+
- ir
|
|
705
|
+
- is-accordion-submenu
|
|
706
|
+
- is-accordion-submenu-parent
|
|
707
|
+
- is-accordion-submenu-parent[aria-expanded=true]
|
|
708
|
+
- is-anchored
|
|
709
|
+
- is-at-bottom
|
|
710
|
+
- is-at-top
|
|
711
|
+
- is-clearable
|
|
712
|
+
- is-closable
|
|
713
|
+
- is-closed
|
|
714
|
+
- is-closing
|
|
715
|
+
- is-collapse-child
|
|
716
|
+
- is-custom-error-visible
|
|
717
|
+
- is-disabled
|
|
718
|
+
- is-dragging
|
|
719
|
+
- is-drilldown
|
|
720
|
+
- is-drilldown-submenu
|
|
721
|
+
- is-drilldown-submenu-parent
|
|
722
|
+
- is-expanded
|
|
723
|
+
- is-filtered
|
|
724
|
+
- is-focused
|
|
725
|
+
- is-hidden
|
|
726
|
+
- is-inactive
|
|
727
|
+
- is-invalid-input
|
|
728
|
+
- is-invalid-label
|
|
729
|
+
- is-off-canvas-open
|
|
730
|
+
- is-open-bottom
|
|
731
|
+
- is-open-left
|
|
732
|
+
- is-open-right
|
|
733
|
+
- is-open-top
|
|
734
|
+
- is-overlay-absolute
|
|
735
|
+
- is-overlay-fixed
|
|
736
|
+
- is-pseudo-focused
|
|
737
|
+
- is-searchable
|
|
738
|
+
- is-stuck
|
|
739
|
+
- is-transition-overlap
|
|
740
|
+
- is-transition-push
|
|
741
|
+
- js-drilldown-back
|
|
742
|
+
- js-off-canvas-overlay
|
|
743
|
+
- label--admin
|
|
744
|
+
- label--basic
|
|
745
|
+
- label--highlight
|
|
746
|
+
- label--small
|
|
747
|
+
- label-required
|
|
748
|
+
- language_
|
|
749
|
+
- large-1
|
|
750
|
+
- large-10
|
|
751
|
+
- large-11
|
|
752
|
+
- large-2
|
|
753
|
+
- large-4
|
|
754
|
+
- large-5
|
|
755
|
+
- large-7
|
|
756
|
+
- large-8
|
|
757
|
+
- large-9
|
|
758
|
+
- large-auto
|
|
759
|
+
- large-cell-block
|
|
760
|
+
- large-cell-block-container
|
|
761
|
+
- large-cell-block-y
|
|
762
|
+
- large-centered
|
|
763
|
+
- large-collapse
|
|
764
|
+
- large-expand
|
|
765
|
+
- large-expanded
|
|
766
|
+
- large-flex-child-auto
|
|
767
|
+
- large-flex-child-grow
|
|
768
|
+
- large-flex-child-shrink
|
|
769
|
+
- large-flex-container
|
|
770
|
+
- large-flex-dir-column
|
|
771
|
+
- large-flex-dir-column-reverse
|
|
772
|
+
- large-flex-dir-row
|
|
773
|
+
- large-flex-dir-row-reverse
|
|
774
|
+
- large-full
|
|
775
|
+
- large-grid-frame
|
|
776
|
+
- large-margin-collapse
|
|
777
|
+
- large-offset-0
|
|
778
|
+
- large-offset-1
|
|
779
|
+
- large-offset-10
|
|
780
|
+
- large-offset-11
|
|
781
|
+
- large-offset-2
|
|
782
|
+
- large-offset-3
|
|
783
|
+
- large-offset-4
|
|
784
|
+
- large-offset-5
|
|
785
|
+
- large-offset-6
|
|
786
|
+
- large-offset-7
|
|
787
|
+
- large-offset-8
|
|
788
|
+
- large-offset-9
|
|
789
|
+
- large-order-1
|
|
790
|
+
- large-order-2
|
|
791
|
+
- large-order-3
|
|
792
|
+
- large-order-4
|
|
793
|
+
- large-order-5
|
|
794
|
+
- large-order-6
|
|
795
|
+
- large-padding-collapse
|
|
796
|
+
- large-pull-0
|
|
797
|
+
- large-pull-1
|
|
798
|
+
- large-pull-10
|
|
799
|
+
- large-pull-11
|
|
800
|
+
- large-pull-2
|
|
801
|
+
- large-pull-3
|
|
802
|
+
- large-pull-4
|
|
803
|
+
- large-pull-5
|
|
804
|
+
- large-pull-6
|
|
805
|
+
- large-pull-7
|
|
806
|
+
- large-pull-8
|
|
807
|
+
- large-pull-9
|
|
808
|
+
- large-push-0
|
|
809
|
+
- large-push-1
|
|
810
|
+
- large-push-10
|
|
811
|
+
- large-push-11
|
|
812
|
+
- large-push-2
|
|
813
|
+
- large-push-3
|
|
814
|
+
- large-push-4
|
|
815
|
+
- large-push-5
|
|
816
|
+
- large-push-6
|
|
817
|
+
- large-push-7
|
|
818
|
+
- large-push-8
|
|
819
|
+
- large-push-9
|
|
820
|
+
- large-shrink
|
|
821
|
+
- large-simple
|
|
822
|
+
- large-text-center
|
|
823
|
+
- large-text-justify
|
|
824
|
+
- large-text-left
|
|
825
|
+
- large-text-right
|
|
826
|
+
- large-uncentered
|
|
827
|
+
- large-uncollapse
|
|
828
|
+
- large-unstack
|
|
829
|
+
- large-up-1
|
|
830
|
+
- large-up-2
|
|
831
|
+
- large-up-3
|
|
832
|
+
- large-up-4
|
|
833
|
+
- large-up-5
|
|
834
|
+
- large-up-6
|
|
835
|
+
- large-up-7
|
|
836
|
+
- large-up-8
|
|
837
|
+
- last-sorted
|
|
838
|
+
- lead
|
|
839
|
+
- legal_text
|
|
840
|
+
- legend
|
|
841
|
+
- letter_spaced
|
|
842
|
+
- levelDescription
|
|
843
|
+
- levelsImage
|
|
844
|
+
- light
|
|
845
|
+
- light[disabled]
|
|
846
|
+
- linechart
|
|
847
|
+
- lines
|
|
848
|
+
- lines-breadcrumb
|
|
849
|
+
- link
|
|
850
|
+
- link-alt
|
|
851
|
+
- list-actions-completed
|
|
852
|
+
- list-actions-uncompleted
|
|
853
|
+
- list-check
|
|
854
|
+
- list-check__icon
|
|
855
|
+
- list-check__ko
|
|
856
|
+
- list-check__ok
|
|
857
|
+
- list-docs
|
|
858
|
+
- list-docs__icon
|
|
859
|
+
- list-inline
|
|
860
|
+
- list-latin
|
|
861
|
+
- list-request
|
|
862
|
+
- list-reset
|
|
863
|
+
- loading
|
|
864
|
+
- loading-spinner
|
|
865
|
+
- login-form
|
|
866
|
+
- login-form-inner
|
|
867
|
+
- login-form-wrapper
|
|
868
|
+
- logo-cityhall
|
|
869
|
+
- logo-wrapper
|
|
870
|
+
- logs__log--expanded
|
|
871
|
+
- logs__log__actions-dropdown
|
|
872
|
+
- logs__log__author
|
|
873
|
+
- logs__log__date
|
|
874
|
+
- logs__log__diff-value
|
|
875
|
+
- logs__log__resource
|
|
876
|
+
- logs__log__space
|
|
877
|
+
- lowercase
|
|
878
|
+
- m-bottom
|
|
879
|
+
- m-l
|
|
880
|
+
- m-m
|
|
881
|
+
- m-none
|
|
882
|
+
- m-s
|
|
883
|
+
- m-sm
|
|
884
|
+
- m-xs
|
|
885
|
+
- main-container
|
|
886
|
+
- main-container--side-panel
|
|
887
|
+
- main-container__content
|
|
888
|
+
- main-content
|
|
889
|
+
- main-footer__badge
|
|
890
|
+
- main-nav__link
|
|
891
|
+
- main-nav__link--active
|
|
892
|
+
- main-section
|
|
893
|
+
- main__footer__nav
|
|
894
|
+
- main__footer__social
|
|
895
|
+
- map
|
|
896
|
+
- map-info
|
|
897
|
+
- map-info__button
|
|
898
|
+
- map-info__content
|
|
899
|
+
- map-legend
|
|
900
|
+
- map__date-address
|
|
901
|
+
- map__help
|
|
902
|
+
- map_canvas
|
|
903
|
+
- margin-0
|
|
904
|
+
- margin-1
|
|
905
|
+
- margin-2
|
|
906
|
+
- margin-3
|
|
907
|
+
- margin-bottom-0
|
|
908
|
+
- margin-bottom-1
|
|
909
|
+
- margin-bottom-2
|
|
910
|
+
- margin-bottom-3
|
|
911
|
+
- margin-horizontal-0
|
|
912
|
+
- margin-horizontal-1
|
|
913
|
+
- margin-horizontal-2
|
|
914
|
+
- margin-horizontal-3
|
|
915
|
+
- margin-left-0
|
|
916
|
+
- margin-left-1
|
|
917
|
+
- margin-left-2
|
|
918
|
+
- margin-left-3
|
|
919
|
+
- margin-right-0
|
|
920
|
+
- margin-right-1
|
|
921
|
+
- margin-right-2
|
|
922
|
+
- margin-right-3
|
|
923
|
+
- margin-top-0
|
|
924
|
+
- margin-top-1
|
|
925
|
+
- margin-top-2
|
|
926
|
+
- margin-top-3
|
|
927
|
+
- margin-vertical-0
|
|
928
|
+
- margin-vertical-1
|
|
929
|
+
- margin-vertical-2
|
|
930
|
+
- margin-vertical-3
|
|
931
|
+
- mb-l
|
|
932
|
+
- mb-m
|
|
933
|
+
- mb-none
|
|
934
|
+
- mb-s
|
|
935
|
+
- mb-sm
|
|
936
|
+
- mb-xs
|
|
937
|
+
- media-links
|
|
938
|
+
- media-object
|
|
939
|
+
- media-object-section
|
|
940
|
+
- media-pictures
|
|
941
|
+
- medium
|
|
942
|
+
- medium-1
|
|
943
|
+
- medium-10
|
|
944
|
+
- medium-11
|
|
945
|
+
- medium-2
|
|
946
|
+
- medium-4
|
|
947
|
+
- medium-5
|
|
948
|
+
- medium-7
|
|
949
|
+
- medium-8
|
|
950
|
+
- medium-9
|
|
951
|
+
- medium-auto
|
|
952
|
+
- medium-cell-block
|
|
953
|
+
- medium-cell-block-container
|
|
954
|
+
- medium-cell-block-y
|
|
955
|
+
- medium-centered
|
|
956
|
+
- medium-collapse
|
|
957
|
+
- medium-expand
|
|
958
|
+
- medium-expanded
|
|
959
|
+
- medium-flex-child-auto
|
|
960
|
+
- medium-flex-child-grow
|
|
961
|
+
- medium-flex-child-shrink
|
|
962
|
+
- medium-flex-container
|
|
963
|
+
- medium-flex-dir-column
|
|
964
|
+
- medium-flex-dir-column-reverse
|
|
965
|
+
- medium-flex-dir-row
|
|
966
|
+
- medium-flex-dir-row-reverse
|
|
967
|
+
- medium-full
|
|
968
|
+
- medium-grid-frame
|
|
969
|
+
- medium-margin-collapse
|
|
970
|
+
- medium-offset-0
|
|
971
|
+
- medium-offset-1
|
|
972
|
+
- medium-offset-10
|
|
973
|
+
- medium-offset-11
|
|
974
|
+
- medium-offset-2
|
|
975
|
+
- medium-offset-3
|
|
976
|
+
- medium-offset-4
|
|
977
|
+
- medium-offset-5
|
|
978
|
+
- medium-offset-6
|
|
979
|
+
- medium-offset-7
|
|
980
|
+
- medium-offset-8
|
|
981
|
+
- medium-offset-9
|
|
982
|
+
- medium-order-1
|
|
983
|
+
- medium-order-2
|
|
984
|
+
- medium-order-3
|
|
985
|
+
- medium-order-4
|
|
986
|
+
- medium-order-5
|
|
987
|
+
- medium-order-6
|
|
988
|
+
- medium-padding-collapse
|
|
989
|
+
- medium-pull-0
|
|
990
|
+
- medium-pull-1
|
|
991
|
+
- medium-pull-10
|
|
992
|
+
- medium-pull-11
|
|
993
|
+
- medium-pull-2
|
|
994
|
+
- medium-pull-3
|
|
995
|
+
- medium-pull-4
|
|
996
|
+
- medium-pull-5
|
|
997
|
+
- medium-pull-6
|
|
998
|
+
- medium-pull-7
|
|
999
|
+
- medium-pull-8
|
|
1000
|
+
- medium-pull-9
|
|
1001
|
+
- medium-push-0
|
|
1002
|
+
- medium-push-1
|
|
1003
|
+
- medium-push-10
|
|
1004
|
+
- medium-push-11
|
|
1005
|
+
- medium-push-2
|
|
1006
|
+
- medium-push-3
|
|
1007
|
+
- medium-push-4
|
|
1008
|
+
- medium-push-5
|
|
1009
|
+
- medium-push-6
|
|
1010
|
+
- medium-push-7
|
|
1011
|
+
- medium-push-8
|
|
1012
|
+
- medium-push-9
|
|
1013
|
+
- medium-shrink
|
|
1014
|
+
- medium-simple
|
|
1015
|
+
- medium-text-center
|
|
1016
|
+
- medium-text-justify
|
|
1017
|
+
- medium-text-left
|
|
1018
|
+
- medium-text-right
|
|
1019
|
+
- medium-uncentered
|
|
1020
|
+
- medium-uncollapse
|
|
1021
|
+
- medium-unstack
|
|
1022
|
+
- medium-up-1
|
|
1023
|
+
- medium-up-2
|
|
1024
|
+
- medium-up-3
|
|
1025
|
+
- medium-up-4
|
|
1026
|
+
- medium-up-5
|
|
1027
|
+
- medium-up-6
|
|
1028
|
+
- medium-up-7
|
|
1029
|
+
- medium-up-8
|
|
1030
|
+
- mediumlarge-1
|
|
1031
|
+
- mediumlarge-10
|
|
1032
|
+
- mediumlarge-11
|
|
1033
|
+
- mediumlarge-12
|
|
1034
|
+
- mediumlarge-2
|
|
1035
|
+
- mediumlarge-3
|
|
1036
|
+
- mediumlarge-4
|
|
1037
|
+
- mediumlarge-5
|
|
1038
|
+
- mediumlarge-6
|
|
1039
|
+
- mediumlarge-7
|
|
1040
|
+
- mediumlarge-8
|
|
1041
|
+
- mediumlarge-9
|
|
1042
|
+
- mediumlarge-auto
|
|
1043
|
+
- mediumlarge-cell-block
|
|
1044
|
+
- mediumlarge-cell-block-container
|
|
1045
|
+
- mediumlarge-cell-block-y
|
|
1046
|
+
- mediumlarge-centered
|
|
1047
|
+
- mediumlarge-collapse
|
|
1048
|
+
- mediumlarge-expanded
|
|
1049
|
+
- mediumlarge-flex-child-auto
|
|
1050
|
+
- mediumlarge-flex-child-grow
|
|
1051
|
+
- mediumlarge-flex-child-shrink
|
|
1052
|
+
- mediumlarge-flex-container
|
|
1053
|
+
- mediumlarge-flex-dir-column
|
|
1054
|
+
- mediumlarge-flex-dir-column-reverse
|
|
1055
|
+
- mediumlarge-flex-dir-row
|
|
1056
|
+
- mediumlarge-flex-dir-row-reverse
|
|
1057
|
+
- mediumlarge-full
|
|
1058
|
+
- mediumlarge-grid-frame
|
|
1059
|
+
- mediumlarge-horizontal
|
|
1060
|
+
- mediumlarge-margin-collapse
|
|
1061
|
+
- mediumlarge-offset-0
|
|
1062
|
+
- mediumlarge-offset-1
|
|
1063
|
+
- mediumlarge-offset-10
|
|
1064
|
+
- mediumlarge-offset-11
|
|
1065
|
+
- mediumlarge-offset-2
|
|
1066
|
+
- mediumlarge-offset-3
|
|
1067
|
+
- mediumlarge-offset-4
|
|
1068
|
+
- mediumlarge-offset-5
|
|
1069
|
+
- mediumlarge-offset-6
|
|
1070
|
+
- mediumlarge-offset-7
|
|
1071
|
+
- mediumlarge-offset-8
|
|
1072
|
+
- mediumlarge-offset-9
|
|
1073
|
+
- mediumlarge-order-1
|
|
1074
|
+
- mediumlarge-order-2
|
|
1075
|
+
- mediumlarge-order-3
|
|
1076
|
+
- mediumlarge-order-4
|
|
1077
|
+
- mediumlarge-order-5
|
|
1078
|
+
- mediumlarge-order-6
|
|
1079
|
+
- mediumlarge-padding-collapse
|
|
1080
|
+
- mediumlarge-pull-0
|
|
1081
|
+
- mediumlarge-pull-1
|
|
1082
|
+
- mediumlarge-pull-10
|
|
1083
|
+
- mediumlarge-pull-11
|
|
1084
|
+
- mediumlarge-pull-2
|
|
1085
|
+
- mediumlarge-pull-3
|
|
1086
|
+
- mediumlarge-pull-4
|
|
1087
|
+
- mediumlarge-pull-5
|
|
1088
|
+
- mediumlarge-pull-6
|
|
1089
|
+
- mediumlarge-pull-7
|
|
1090
|
+
- mediumlarge-pull-8
|
|
1091
|
+
- mediumlarge-pull-9
|
|
1092
|
+
- mediumlarge-push-0
|
|
1093
|
+
- mediumlarge-push-1
|
|
1094
|
+
- mediumlarge-push-10
|
|
1095
|
+
- mediumlarge-push-11
|
|
1096
|
+
- mediumlarge-push-2
|
|
1097
|
+
- mediumlarge-push-3
|
|
1098
|
+
- mediumlarge-push-4
|
|
1099
|
+
- mediumlarge-push-5
|
|
1100
|
+
- mediumlarge-push-6
|
|
1101
|
+
- mediumlarge-push-7
|
|
1102
|
+
- mediumlarge-push-8
|
|
1103
|
+
- mediumlarge-push-9
|
|
1104
|
+
- mediumlarge-shrink
|
|
1105
|
+
- mediumlarge-simple
|
|
1106
|
+
- mediumlarge-text-center
|
|
1107
|
+
- mediumlarge-text-justify
|
|
1108
|
+
- mediumlarge-text-left
|
|
1109
|
+
- mediumlarge-text-right
|
|
1110
|
+
- mediumlarge-uncentered
|
|
1111
|
+
- mediumlarge-uncollapse
|
|
1112
|
+
- mediumlarge-up-1
|
|
1113
|
+
- mediumlarge-up-2
|
|
1114
|
+
- mediumlarge-up-3
|
|
1115
|
+
- mediumlarge-up-4
|
|
1116
|
+
- mediumlarge-up-5
|
|
1117
|
+
- mediumlarge-up-6
|
|
1118
|
+
- mediumlarge-up-7
|
|
1119
|
+
- mediumlarge-up-8
|
|
1120
|
+
- mediumlarge-vertical
|
|
1121
|
+
- meeting-polls__button
|
|
1122
|
+
- meeting-polls__close
|
|
1123
|
+
- mentions__container
|
|
1124
|
+
- mentions__container--textarea
|
|
1125
|
+
- menu-centered
|
|
1126
|
+
- menu-highlighted
|
|
1127
|
+
- menu-icon
|
|
1128
|
+
- menu-text
|
|
1129
|
+
- mf-text
|
|
1130
|
+
- middle
|
|
1131
|
+
- mini-title
|
|
1132
|
+
- mini-title__strong
|
|
1133
|
+
- mini-title__strong--highlight
|
|
1134
|
+
- minimap
|
|
1135
|
+
- minimap-logo
|
|
1136
|
+
- minimap-official_img_header
|
|
1137
|
+
- ml-l
|
|
1138
|
+
- ml-m
|
|
1139
|
+
- ml-none
|
|
1140
|
+
- ml-s
|
|
1141
|
+
- ml-sm
|
|
1142
|
+
- ml-xs
|
|
1143
|
+
- modal
|
|
1144
|
+
- month
|
|
1145
|
+
- mqa-display
|
|
1146
|
+
- mr-l
|
|
1147
|
+
- mr-m
|
|
1148
|
+
- mr-none
|
|
1149
|
+
- mr-s
|
|
1150
|
+
- mr-sm
|
|
1151
|
+
- mr-xs
|
|
1152
|
+
- mt-l
|
|
1153
|
+
- mt-m
|
|
1154
|
+
- mt-none
|
|
1155
|
+
- mt-s
|
|
1156
|
+
- mt-sm
|
|
1157
|
+
- mt-xs
|
|
1158
|
+
- multiple-mentions
|
|
1159
|
+
- multiple-mentions-selected
|
|
1160
|
+
- multiple_option
|
|
1161
|
+
- multiusers-select-container
|
|
1162
|
+
- muted
|
|
1163
|
+
- muted-link
|
|
1164
|
+
- navbar
|
|
1165
|
+
- new_user_block
|
|
1166
|
+
- no-bullet
|
|
1167
|
+
- no-comments
|
|
1168
|
+
- no-gaps
|
|
1169
|
+
- no-motionui
|
|
1170
|
+
- no-stroke
|
|
1171
|
+
- node
|
|
1172
|
+
- nomargin
|
|
1173
|
+
- off-canvas
|
|
1174
|
+
- off-canvas-absolute
|
|
1175
|
+
- off-canvas-content
|
|
1176
|
+
- off-canvas-wrapper-inner
|
|
1177
|
+
- omnipresent-banner-short-description
|
|
1178
|
+
- omnipresent-banner-title
|
|
1179
|
+
- opinion-toggle
|
|
1180
|
+
- opinion-toggle--ko
|
|
1181
|
+
- opinion-toggle--meh
|
|
1182
|
+
- opinion-toggle--ok
|
|
1183
|
+
- orbit
|
|
1184
|
+
- orbit-bullets
|
|
1185
|
+
- orbit-caption
|
|
1186
|
+
- orbit-container
|
|
1187
|
+
- orbit-controls
|
|
1188
|
+
- orbit-figure
|
|
1189
|
+
- orbit-image
|
|
1190
|
+
- orbit-next
|
|
1191
|
+
- orbit-previous
|
|
1192
|
+
- orbit-slide
|
|
1193
|
+
- order-by__action
|
|
1194
|
+
- order-by__dropdown
|
|
1195
|
+
- order-by__dropdown--right
|
|
1196
|
+
- order-by__tab
|
|
1197
|
+
- order-by__tabs
|
|
1198
|
+
- organization
|
|
1199
|
+
- organization-images
|
|
1200
|
+
- orgchart
|
|
1201
|
+
- p-l
|
|
1202
|
+
- p-m
|
|
1203
|
+
- p-none
|
|
1204
|
+
- p-s
|
|
1205
|
+
- p-sm
|
|
1206
|
+
- p-xs
|
|
1207
|
+
- padding-0
|
|
1208
|
+
- padding-1
|
|
1209
|
+
- padding-2
|
|
1210
|
+
- padding-3
|
|
1211
|
+
- padding-bottom-0
|
|
1212
|
+
- padding-bottom-1
|
|
1213
|
+
- padding-bottom-2
|
|
1214
|
+
- padding-bottom-3
|
|
1215
|
+
- padding-horizontal-0
|
|
1216
|
+
- padding-horizontal-1
|
|
1217
|
+
- padding-horizontal-2
|
|
1218
|
+
- padding-horizontal-3
|
|
1219
|
+
- padding-left-0
|
|
1220
|
+
- padding-left-1
|
|
1221
|
+
- padding-left-2
|
|
1222
|
+
- padding-left-3
|
|
1223
|
+
- padding-right-0
|
|
1224
|
+
- padding-right-1
|
|
1225
|
+
- padding-right-2
|
|
1226
|
+
- padding-right-3
|
|
1227
|
+
- padding-top-0
|
|
1228
|
+
- padding-top-1
|
|
1229
|
+
- padding-top-2
|
|
1230
|
+
- padding-top-3
|
|
1231
|
+
- padding-vertical-0
|
|
1232
|
+
- padding-vertical-1
|
|
1233
|
+
- padding-vertical-2
|
|
1234
|
+
- padding-vertical-3
|
|
1235
|
+
- page-title
|
|
1236
|
+
- page-title-wrapper
|
|
1237
|
+
- pagination
|
|
1238
|
+
- pagination-next
|
|
1239
|
+
- pagination-previous
|
|
1240
|
+
- participatory-process
|
|
1241
|
+
- participatory_space_manifest
|
|
1242
|
+
- participatory_space_slug
|
|
1243
|
+
- pb-l
|
|
1244
|
+
- pb-m
|
|
1245
|
+
- pb-none
|
|
1246
|
+
- pb-s
|
|
1247
|
+
- pb-sm
|
|
1248
|
+
- pb-xs
|
|
1249
|
+
- percentage
|
|
1250
|
+
- phase-current
|
|
1251
|
+
- phase-date
|
|
1252
|
+
- phase-item--current
|
|
1253
|
+
- phase-item--past
|
|
1254
|
+
- phase-subtitle--initiatives
|
|
1255
|
+
- phase-title
|
|
1256
|
+
- phase-title--initiatives
|
|
1257
|
+
- picker-content
|
|
1258
|
+
- picker-list
|
|
1259
|
+
- picker-scrollable-content
|
|
1260
|
+
- picture__content
|
|
1261
|
+
- pl-l
|
|
1262
|
+
- pl-m
|
|
1263
|
+
- pl-none
|
|
1264
|
+
- pl-s
|
|
1265
|
+
- pl-sm
|
|
1266
|
+
- pl-xs
|
|
1267
|
+
- placeholder
|
|
1268
|
+
- pokecode-credits
|
|
1269
|
+
- popularity
|
|
1270
|
+
- popularity--level1
|
|
1271
|
+
- popularity--level2
|
|
1272
|
+
- popularity--level3
|
|
1273
|
+
- popularity--level4
|
|
1274
|
+
- popularity--level5
|
|
1275
|
+
- popularity--level6
|
|
1276
|
+
- popularity__desc
|
|
1277
|
+
- popularity__item
|
|
1278
|
+
- position-bottom
|
|
1279
|
+
- position-left
|
|
1280
|
+
- position-right
|
|
1281
|
+
- position-top
|
|
1282
|
+
- pr-l
|
|
1283
|
+
- pr-m
|
|
1284
|
+
- pr-none
|
|
1285
|
+
- pr-s
|
|
1286
|
+
- pr-sm
|
|
1287
|
+
- pr-xs
|
|
1288
|
+
- prefix
|
|
1289
|
+
- preview
|
|
1290
|
+
- preview--form__hidden
|
|
1291
|
+
- primary
|
|
1292
|
+
- primary[disabled]
|
|
1293
|
+
- print-break-inside
|
|
1294
|
+
- process-header__body
|
|
1295
|
+
- process-header__button
|
|
1296
|
+
- process-header__container
|
|
1297
|
+
- process-header__hashtag
|
|
1298
|
+
- process-header__info
|
|
1299
|
+
- process-header__inner
|
|
1300
|
+
- process-header__link
|
|
1301
|
+
- process-header__main
|
|
1302
|
+
- process-header__nav
|
|
1303
|
+
- process-header__phase
|
|
1304
|
+
- process-header__phase--simple
|
|
1305
|
+
- process-header__progress
|
|
1306
|
+
- process-header__title
|
|
1307
|
+
- process-nav
|
|
1308
|
+
- process-nav__content
|
|
1309
|
+
- process-nav__hidden-content
|
|
1310
|
+
- process-nav__hidden-content__more
|
|
1311
|
+
- process-nav__link
|
|
1312
|
+
- process-nav__more
|
|
1313
|
+
- process-nav__trigger
|
|
1314
|
+
- process-nav__trigger__icon
|
|
1315
|
+
- process-phase
|
|
1316
|
+
- process-title-summary
|
|
1317
|
+
- profile--sidebar--title
|
|
1318
|
+
- programme-day
|
|
1319
|
+
- programme-extra
|
|
1320
|
+
- programme-header
|
|
1321
|
+
- programme-resume
|
|
1322
|
+
- programme-selector
|
|
1323
|
+
- programme-time
|
|
1324
|
+
- programme-title
|
|
1325
|
+
- progress
|
|
1326
|
+
- progress-bar-border
|
|
1327
|
+
- progress-bar-wrapper
|
|
1328
|
+
- progress-figure
|
|
1329
|
+
- progress-info
|
|
1330
|
+
- progress-label
|
|
1331
|
+
- progress-level
|
|
1332
|
+
- progress-meter
|
|
1333
|
+
- progress-meter--minimum
|
|
1334
|
+
- progress-meter-text
|
|
1335
|
+
- progress-meter-text--right
|
|
1336
|
+
- progress-text
|
|
1337
|
+
- progress__bar
|
|
1338
|
+
- progress__bar--horizontal
|
|
1339
|
+
- progress__bar--vertical
|
|
1340
|
+
- progress__bar__bar
|
|
1341
|
+
- progress__bar__bar--complete
|
|
1342
|
+
- progress__bar__bar--incomplete
|
|
1343
|
+
- progress__bar__number
|
|
1344
|
+
- progress__bar__subtitle
|
|
1345
|
+
- progress__bar__text
|
|
1346
|
+
- progress__bar__title
|
|
1347
|
+
- progress_bar
|
|
1348
|
+
- project-status
|
|
1349
|
+
- proposal-status
|
|
1350
|
+
- proposal-status--small
|
|
1351
|
+
- proposal_custom_field
|
|
1352
|
+
- proposal_custom_fields_container
|
|
1353
|
+
- proposal_custom_fields_editor
|
|
1354
|
+
- pt-l
|
|
1355
|
+
- pt-m
|
|
1356
|
+
- pt-none
|
|
1357
|
+
- pt-s
|
|
1358
|
+
- pt-sm
|
|
1359
|
+
- pt-xs
|
|
1360
|
+
- public-participation
|
|
1361
|
+
- publish-date
|
|
1362
|
+
- pull-left
|
|
1363
|
+
- pull-right
|
|
1364
|
+
- ql-active
|
|
1365
|
+
- ql-align-center
|
|
1366
|
+
- ql-align-justify
|
|
1367
|
+
- ql-align-right
|
|
1368
|
+
- ql-background
|
|
1369
|
+
- ql-bg-black
|
|
1370
|
+
- ql-bg-blue
|
|
1371
|
+
- ql-bg-green
|
|
1372
|
+
- ql-bg-orange
|
|
1373
|
+
- ql-bg-purple
|
|
1374
|
+
- ql-bg-red
|
|
1375
|
+
- ql-bg-yellow
|
|
1376
|
+
- ql-blank
|
|
1377
|
+
- ql-clipboard
|
|
1378
|
+
- ql-color
|
|
1379
|
+
- ql-color-blue
|
|
1380
|
+
- ql-color-green
|
|
1381
|
+
- ql-color-orange
|
|
1382
|
+
- ql-color-picker
|
|
1383
|
+
- ql-color-purple
|
|
1384
|
+
- ql-color-red
|
|
1385
|
+
- ql-color-white
|
|
1386
|
+
- ql-color-yellow
|
|
1387
|
+
- ql-container
|
|
1388
|
+
- ql-direction
|
|
1389
|
+
- ql-direction-rtl
|
|
1390
|
+
- ql-disabled
|
|
1391
|
+
- ql-editing
|
|
1392
|
+
- ql-editor-display
|
|
1393
|
+
- ql-empty
|
|
1394
|
+
- ql-even
|
|
1395
|
+
- ql-expanded
|
|
1396
|
+
- ql-fill
|
|
1397
|
+
- ql-flip
|
|
1398
|
+
- ql-font
|
|
1399
|
+
- ql-font-monospace
|
|
1400
|
+
- ql-font-serif
|
|
1401
|
+
- ql-formats
|
|
1402
|
+
- ql-header
|
|
1403
|
+
- ql-hidden
|
|
1404
|
+
- ql-icon-picker
|
|
1405
|
+
- ql-indent-1
|
|
1406
|
+
- ql-indent-2
|
|
1407
|
+
- ql-indent-3
|
|
1408
|
+
- ql-indent-4
|
|
1409
|
+
- ql-indent-5
|
|
1410
|
+
- ql-indent-6
|
|
1411
|
+
- ql-indent-7
|
|
1412
|
+
- ql-indent-8
|
|
1413
|
+
- ql-indent-9
|
|
1414
|
+
- ql-out-bottom
|
|
1415
|
+
- ql-out-top
|
|
1416
|
+
- ql-picker
|
|
1417
|
+
- ql-picker-item
|
|
1418
|
+
- ql-picker-item[data-label]
|
|
1419
|
+
- ql-picker-item[data-value="1"]
|
|
1420
|
+
- ql-picker-item[data-value="2"]
|
|
1421
|
+
- ql-picker-item[data-value="3"]
|
|
1422
|
+
- ql-picker-item[data-value="4"]
|
|
1423
|
+
- ql-picker-item[data-value="5"]
|
|
1424
|
+
- ql-picker-item[data-value="6"]
|
|
1425
|
+
- ql-picker-item[data-value=huge]
|
|
1426
|
+
- ql-picker-item[data-value=large]
|
|
1427
|
+
- ql-picker-item[data-value=monospace]
|
|
1428
|
+
- ql-picker-item[data-value=serif]
|
|
1429
|
+
- ql-picker-item[data-value=small]
|
|
1430
|
+
- ql-picker-label
|
|
1431
|
+
- ql-picker-label[data-label]
|
|
1432
|
+
- ql-picker-label[data-value="1"]
|
|
1433
|
+
- ql-picker-label[data-value="2"]
|
|
1434
|
+
- ql-picker-label[data-value="3"]
|
|
1435
|
+
- ql-picker-label[data-value="4"]
|
|
1436
|
+
- ql-picker-label[data-value="5"]
|
|
1437
|
+
- ql-picker-label[data-value="6"]
|
|
1438
|
+
- ql-picker-label[data-value=huge]
|
|
1439
|
+
- ql-picker-label[data-value=large]
|
|
1440
|
+
- ql-picker-label[data-value=monospace]
|
|
1441
|
+
- ql-picker-label[data-value=serif]
|
|
1442
|
+
- ql-picker-label[data-value=small]
|
|
1443
|
+
- ql-picker-options
|
|
1444
|
+
- ql-selected
|
|
1445
|
+
- ql-size
|
|
1446
|
+
- ql-size-huge
|
|
1447
|
+
- ql-size-large
|
|
1448
|
+
- ql-size-small
|
|
1449
|
+
- ql-snow
|
|
1450
|
+
- ql-stroke
|
|
1451
|
+
- ql-stroke-miter
|
|
1452
|
+
- ql-thin
|
|
1453
|
+
- ql-toolbar
|
|
1454
|
+
- ql-tooltip
|
|
1455
|
+
- ql-tooltip[data-mode=formula]
|
|
1456
|
+
- ql-tooltip[data-mode=link]
|
|
1457
|
+
- ql-tooltip[data-mode=video]
|
|
1458
|
+
- ql-transparent
|
|
1459
|
+
- ql-video
|
|
1460
|
+
- question-divider
|
|
1461
|
+
- questionnaire-question-matrix
|
|
1462
|
+
- questionnaire-question_readonly
|
|
1463
|
+
- questionnaire-question_readonly-answer
|
|
1464
|
+
- questionnaire-question_readonly-answers
|
|
1465
|
+
- questionnaire-title_and_description
|
|
1466
|
+
- radio-button-collection
|
|
1467
|
+
- readonly_container
|
|
1468
|
+
- recap_assistant
|
|
1469
|
+
- recommendation
|
|
1470
|
+
- recommendation-container
|
|
1471
|
+
- recommendation-firstContainer
|
|
1472
|
+
- recommendation-points
|
|
1473
|
+
- register-form
|
|
1474
|
+
- register__separator
|
|
1475
|
+
- register__separator__text
|
|
1476
|
+
- registration__buttons
|
|
1477
|
+
- registration__text
|
|
1478
|
+
- remove-upload-item
|
|
1479
|
+
- rendered-form
|
|
1480
|
+
- replies
|
|
1481
|
+
- represent-user-group
|
|
1482
|
+
- responsive-embed
|
|
1483
|
+
- responsive-tab-block
|
|
1484
|
+
- result-description
|
|
1485
|
+
- result-meta
|
|
1486
|
+
- result-meta--data
|
|
1487
|
+
- result-meta--label
|
|
1488
|
+
- result-view
|
|
1489
|
+
- results-per-page
|
|
1490
|
+
- results-per-page__action
|
|
1491
|
+
- results-per-page__dropdown
|
|
1492
|
+
- results-per-page__dropdown--right
|
|
1493
|
+
- results-per-page__tab
|
|
1494
|
+
- results-per-page__tabs
|
|
1495
|
+
- reveal
|
|
1496
|
+
- reveal--embed
|
|
1497
|
+
- reveal-for-large
|
|
1498
|
+
- reveal-for-medium
|
|
1499
|
+
- reveal-for-mediumlarge
|
|
1500
|
+
- reveal-for-smallmedium
|
|
1501
|
+
- reveal-for-xlarge
|
|
1502
|
+
- reveal-overlay
|
|
1503
|
+
- reveal__bg
|
|
1504
|
+
- reveal__buttons
|
|
1505
|
+
- reveal__footer
|
|
1506
|
+
- reveal__header
|
|
1507
|
+
- reveal__header--nomargin
|
|
1508
|
+
- reveal__list
|
|
1509
|
+
- reveal__title
|
|
1510
|
+
- reveal__trigger
|
|
1511
|
+
- rowchart
|
|
1512
|
+
- scope-filters
|
|
1513
|
+
- scope-picker
|
|
1514
|
+
- scoped_styles_container
|
|
1515
|
+
- scroll
|
|
1516
|
+
- search-highlight
|
|
1517
|
+
- secondary
|
|
1518
|
+
- secondary-nav
|
|
1519
|
+
- secondary-nav--subnav
|
|
1520
|
+
- secondary-nav__actions
|
|
1521
|
+
- secondary-nav__subtitle
|
|
1522
|
+
- secondary[disabled]
|
|
1523
|
+
- section
|
|
1524
|
+
- section-heading
|
|
1525
|
+
- section-title
|
|
1526
|
+
- select2-arrow
|
|
1527
|
+
- select2-choice
|
|
1528
|
+
- select2-close-mask
|
|
1529
|
+
- select2-container
|
|
1530
|
+
- select2-container--above
|
|
1531
|
+
- select2-container--below
|
|
1532
|
+
- select2-container--classic
|
|
1533
|
+
- select2-container--classic[dir=rtl]
|
|
1534
|
+
- select2-container--default
|
|
1535
|
+
- select2-container--default[dir=rtl]
|
|
1536
|
+
- select2-container--disabled
|
|
1537
|
+
- select2-container--focus
|
|
1538
|
+
- select2-container--foundation
|
|
1539
|
+
- select2-container--open
|
|
1540
|
+
- select2-container[dir=rtl]
|
|
1541
|
+
- select2-dropdown
|
|
1542
|
+
- select2-dropdown--above
|
|
1543
|
+
- select2-dropdown--below
|
|
1544
|
+
- select2-hidden-accessible
|
|
1545
|
+
- select2-results
|
|
1546
|
+
- select2-results__group
|
|
1547
|
+
- select2-results__option
|
|
1548
|
+
- select2-results__option--disabled
|
|
1549
|
+
- select2-results__option--group
|
|
1550
|
+
- select2-results__option--highlighted
|
|
1551
|
+
- select2-results__option--highlighted[aria-selected]
|
|
1552
|
+
- select2-results__option--selectable
|
|
1553
|
+
- select2-results__option--selected
|
|
1554
|
+
- select2-results__option[aria-disabled=true]
|
|
1555
|
+
- select2-results__option[role=group]
|
|
1556
|
+
- select2-results__options
|
|
1557
|
+
- select2-search--dropdown
|
|
1558
|
+
- select2-search--hide
|
|
1559
|
+
- select2-search--inline
|
|
1560
|
+
- select2-search__field
|
|
1561
|
+
- select2-selection
|
|
1562
|
+
- select2-selection--clearable
|
|
1563
|
+
- select2-selection--multiple
|
|
1564
|
+
- select2-selection--single
|
|
1565
|
+
- select2-selection__arrow
|
|
1566
|
+
- select2-selection__choice
|
|
1567
|
+
- select2-selection__choice__display
|
|
1568
|
+
- select2-selection__choice__remove
|
|
1569
|
+
- select2-selection__clear
|
|
1570
|
+
- select2-selection__placeholder
|
|
1571
|
+
- select2-selection__rendered
|
|
1572
|
+
- selection
|
|
1573
|
+
- session-box
|
|
1574
|
+
- share
|
|
1575
|
+
- share-link
|
|
1576
|
+
- share__icon
|
|
1577
|
+
- show-1
|
|
1578
|
+
- show-10
|
|
1579
|
+
- show-11
|
|
1580
|
+
- show-12
|
|
1581
|
+
- show-2
|
|
1582
|
+
- show-3
|
|
1583
|
+
- show-4
|
|
1584
|
+
- show-5
|
|
1585
|
+
- show-6
|
|
1586
|
+
- show-7
|
|
1587
|
+
- show-8
|
|
1588
|
+
- show-9
|
|
1589
|
+
- show-comment-replies
|
|
1590
|
+
- show-for-ie
|
|
1591
|
+
- show-for-dark-mode
|
|
1592
|
+
- show-for-landscape
|
|
1593
|
+
- show-for-large
|
|
1594
|
+
- show-for-large-only
|
|
1595
|
+
- show-for-medium
|
|
1596
|
+
- show-for-medium-only
|
|
1597
|
+
- show-for-mediumlarge
|
|
1598
|
+
- show-for-mediumlarge-only
|
|
1599
|
+
- show-for-portrait
|
|
1600
|
+
- show-for-print
|
|
1601
|
+
- show-for-small-only
|
|
1602
|
+
- show-for-smallmedium
|
|
1603
|
+
- show-for-smallmedium-only
|
|
1604
|
+
- show-for-sr
|
|
1605
|
+
- show-for-sticky
|
|
1606
|
+
- show-for-xlarge
|
|
1607
|
+
- show-for-xlarge-only
|
|
1608
|
+
- show-more
|
|
1609
|
+
- show-on-focus
|
|
1610
|
+
- side-panel
|
|
1611
|
+
- side-panel__tabs
|
|
1612
|
+
- sidebar
|
|
1613
|
+
- sign-out
|
|
1614
|
+
- simple
|
|
1615
|
+
- single_option
|
|
1616
|
+
- skip
|
|
1617
|
+
- slider
|
|
1618
|
+
- slider-fill
|
|
1619
|
+
- slider-handle
|
|
1620
|
+
- slider[disabled]
|
|
1621
|
+
- small-1
|
|
1622
|
+
- small-10
|
|
1623
|
+
- small-11
|
|
1624
|
+
- small-2
|
|
1625
|
+
- small-4
|
|
1626
|
+
- small-5
|
|
1627
|
+
- small-7
|
|
1628
|
+
- small-8
|
|
1629
|
+
- small-9
|
|
1630
|
+
- small-centered
|
|
1631
|
+
- small-collapse
|
|
1632
|
+
- small-full
|
|
1633
|
+
- small-margin-collapse
|
|
1634
|
+
- small-offset-0
|
|
1635
|
+
- small-offset-1
|
|
1636
|
+
- small-offset-10
|
|
1637
|
+
- small-offset-11
|
|
1638
|
+
- small-offset-2
|
|
1639
|
+
- small-offset-3
|
|
1640
|
+
- small-offset-4
|
|
1641
|
+
- small-offset-5
|
|
1642
|
+
- small-offset-6
|
|
1643
|
+
- small-offset-7
|
|
1644
|
+
- small-offset-8
|
|
1645
|
+
- small-offset-9
|
|
1646
|
+
- small-order-1
|
|
1647
|
+
- small-order-2
|
|
1648
|
+
- small-order-3
|
|
1649
|
+
- small-order-4
|
|
1650
|
+
- small-order-5
|
|
1651
|
+
- small-order-6
|
|
1652
|
+
- small-padding-collapse
|
|
1653
|
+
- small-pull-0
|
|
1654
|
+
- small-pull-1
|
|
1655
|
+
- small-pull-10
|
|
1656
|
+
- small-pull-11
|
|
1657
|
+
- small-pull-2
|
|
1658
|
+
- small-pull-3
|
|
1659
|
+
- small-pull-4
|
|
1660
|
+
- small-pull-5
|
|
1661
|
+
- small-pull-6
|
|
1662
|
+
- small-pull-7
|
|
1663
|
+
- small-pull-8
|
|
1664
|
+
- small-pull-9
|
|
1665
|
+
- small-push-0
|
|
1666
|
+
- small-push-1
|
|
1667
|
+
- small-push-10
|
|
1668
|
+
- small-push-11
|
|
1669
|
+
- small-push-2
|
|
1670
|
+
- small-push-3
|
|
1671
|
+
- small-push-4
|
|
1672
|
+
- small-push-5
|
|
1673
|
+
- small-push-6
|
|
1674
|
+
- small-push-7
|
|
1675
|
+
- small-push-8
|
|
1676
|
+
- small-push-9
|
|
1677
|
+
- small-shrink
|
|
1678
|
+
- small-uncentered
|
|
1679
|
+
- small-uncollapse
|
|
1680
|
+
- small-up-1
|
|
1681
|
+
- small-up-2
|
|
1682
|
+
- small-up-3
|
|
1683
|
+
- small-up-4
|
|
1684
|
+
- small-up-5
|
|
1685
|
+
- small-up-6
|
|
1686
|
+
- small-up-7
|
|
1687
|
+
- small-up-8
|
|
1688
|
+
- smallmedium-1
|
|
1689
|
+
- smallmedium-10
|
|
1690
|
+
- smallmedium-11
|
|
1691
|
+
- smallmedium-12
|
|
1692
|
+
- smallmedium-2
|
|
1693
|
+
- smallmedium-3
|
|
1694
|
+
- smallmedium-4
|
|
1695
|
+
- smallmedium-5
|
|
1696
|
+
- smallmedium-6
|
|
1697
|
+
- smallmedium-7
|
|
1698
|
+
- smallmedium-8
|
|
1699
|
+
- smallmedium-9
|
|
1700
|
+
- smallmedium-auto
|
|
1701
|
+
- smallmedium-cell-block
|
|
1702
|
+
- smallmedium-cell-block-container
|
|
1703
|
+
- smallmedium-cell-block-y
|
|
1704
|
+
- smallmedium-centered
|
|
1705
|
+
- smallmedium-collapse
|
|
1706
|
+
- smallmedium-expanded
|
|
1707
|
+
- smallmedium-flex-child-auto
|
|
1708
|
+
- smallmedium-flex-child-grow
|
|
1709
|
+
- smallmedium-flex-child-shrink
|
|
1710
|
+
- smallmedium-flex-container
|
|
1711
|
+
- smallmedium-flex-dir-column
|
|
1712
|
+
- smallmedium-flex-dir-column-reverse
|
|
1713
|
+
- smallmedium-flex-dir-row
|
|
1714
|
+
- smallmedium-flex-dir-row-reverse
|
|
1715
|
+
- smallmedium-full
|
|
1716
|
+
- smallmedium-grid-frame
|
|
1717
|
+
- smallmedium-horizontal
|
|
1718
|
+
- smallmedium-margin-collapse
|
|
1719
|
+
- smallmedium-offset-0
|
|
1720
|
+
- smallmedium-offset-1
|
|
1721
|
+
- smallmedium-offset-10
|
|
1722
|
+
- smallmedium-offset-11
|
|
1723
|
+
- smallmedium-offset-2
|
|
1724
|
+
- smallmedium-offset-3
|
|
1725
|
+
- smallmedium-offset-4
|
|
1726
|
+
- smallmedium-offset-5
|
|
1727
|
+
- smallmedium-offset-6
|
|
1728
|
+
- smallmedium-offset-7
|
|
1729
|
+
- smallmedium-offset-8
|
|
1730
|
+
- smallmedium-offset-9
|
|
1731
|
+
- smallmedium-order-1
|
|
1732
|
+
- smallmedium-order-2
|
|
1733
|
+
- smallmedium-order-3
|
|
1734
|
+
- smallmedium-order-4
|
|
1735
|
+
- smallmedium-order-5
|
|
1736
|
+
- smallmedium-order-6
|
|
1737
|
+
- smallmedium-padding-collapse
|
|
1738
|
+
- smallmedium-pull-0
|
|
1739
|
+
- smallmedium-pull-1
|
|
1740
|
+
- smallmedium-pull-10
|
|
1741
|
+
- smallmedium-pull-11
|
|
1742
|
+
- smallmedium-pull-2
|
|
1743
|
+
- smallmedium-pull-3
|
|
1744
|
+
- smallmedium-pull-4
|
|
1745
|
+
- smallmedium-pull-5
|
|
1746
|
+
- smallmedium-pull-6
|
|
1747
|
+
- smallmedium-pull-7
|
|
1748
|
+
- smallmedium-pull-8
|
|
1749
|
+
- smallmedium-pull-9
|
|
1750
|
+
- smallmedium-push-0
|
|
1751
|
+
- smallmedium-push-1
|
|
1752
|
+
- smallmedium-push-10
|
|
1753
|
+
- smallmedium-push-11
|
|
1754
|
+
- smallmedium-push-2
|
|
1755
|
+
- smallmedium-push-3
|
|
1756
|
+
- smallmedium-push-4
|
|
1757
|
+
- smallmedium-push-5
|
|
1758
|
+
- smallmedium-push-6
|
|
1759
|
+
- smallmedium-push-7
|
|
1760
|
+
- smallmedium-push-8
|
|
1761
|
+
- smallmedium-push-9
|
|
1762
|
+
- smallmedium-shrink
|
|
1763
|
+
- smallmedium-simple
|
|
1764
|
+
- smallmedium-text-center
|
|
1765
|
+
- smallmedium-text-justify
|
|
1766
|
+
- smallmedium-text-left
|
|
1767
|
+
- smallmedium-text-right
|
|
1768
|
+
- smallmedium-uncentered
|
|
1769
|
+
- smallmedium-uncollapse
|
|
1770
|
+
- smallmedium-up-1
|
|
1771
|
+
- smallmedium-up-2
|
|
1772
|
+
- smallmedium-up-3
|
|
1773
|
+
- smallmedium-up-4
|
|
1774
|
+
- smallmedium-up-5
|
|
1775
|
+
- smallmedium-up-6
|
|
1776
|
+
- smallmedium-up-7
|
|
1777
|
+
- smallmedium-up-8
|
|
1778
|
+
- smallmedium-vertical
|
|
1779
|
+
- social-register
|
|
1780
|
+
- social-share-button
|
|
1781
|
+
- social_networks
|
|
1782
|
+
- sort-placeholder
|
|
1783
|
+
- sortable-check-box-collection
|
|
1784
|
+
- sorting
|
|
1785
|
+
- speaker-bio
|
|
1786
|
+
- speaker-data
|
|
1787
|
+
- speaker-img
|
|
1788
|
+
- speaker-img-wrapper
|
|
1789
|
+
- speakers-list
|
|
1790
|
+
- ss-wechat-dialog
|
|
1791
|
+
- ssb-delicious
|
|
1792
|
+
- ssb-douban
|
|
1793
|
+
- ssb-email
|
|
1794
|
+
- ssb-facebook
|
|
1795
|
+
- ssb-google_bookmark
|
|
1796
|
+
- ssb-google_plus
|
|
1797
|
+
- ssb-hacker_news
|
|
1798
|
+
- ssb-icon
|
|
1799
|
+
- ssb-linkedin
|
|
1800
|
+
- ssb-odnoklassniki
|
|
1801
|
+
- ssb-pinterest
|
|
1802
|
+
- ssb-qq
|
|
1803
|
+
- ssb-reddit
|
|
1804
|
+
- ssb-telegram
|
|
1805
|
+
- ssb-tumblr
|
|
1806
|
+
- ssb-twitter
|
|
1807
|
+
- ssb-vkontakte
|
|
1808
|
+
- ssb-wechat
|
|
1809
|
+
- ssb-weibo
|
|
1810
|
+
- ssb-whatsapp_app
|
|
1811
|
+
- ssb-whatsapp_web
|
|
1812
|
+
- ssb-xing
|
|
1813
|
+
- stack-for-small
|
|
1814
|
+
- stacked
|
|
1815
|
+
- stacked-for-large
|
|
1816
|
+
- stacked-for-medium
|
|
1817
|
+
- stacked-for-mediumlarge
|
|
1818
|
+
- stacked-for-small
|
|
1819
|
+
- stacked-for-smallmedium
|
|
1820
|
+
- stacked-for-xlarge
|
|
1821
|
+
- static-nav
|
|
1822
|
+
- static-with-nav
|
|
1823
|
+
- static__message
|
|
1824
|
+
- static__message__cta
|
|
1825
|
+
- statistic__data
|
|
1826
|
+
- statistics-cell
|
|
1827
|
+
- step--active
|
|
1828
|
+
- step-settings
|
|
1829
|
+
- steps-toggle
|
|
1830
|
+
- sticky-container
|
|
1831
|
+
- stroke-primary
|
|
1832
|
+
- stroke-secondary
|
|
1833
|
+
- stroke-white
|
|
1834
|
+
- stroked-shape
|
|
1835
|
+
- subheader
|
|
1836
|
+
- subheading1
|
|
1837
|
+
- subhero
|
|
1838
|
+
- subhero-cta
|
|
1839
|
+
- subhero-cta--secondary
|
|
1840
|
+
- submenu
|
|
1841
|
+
- submenu-toggle
|
|
1842
|
+
- submenu-toggle-text
|
|
1843
|
+
- submenu-toggle[aria-expanded=true]
|
|
1844
|
+
- subscribed_count
|
|
1845
|
+
- subscribed_title
|
|
1846
|
+
- subtitle
|
|
1847
|
+
- success[disabled]
|
|
1848
|
+
- support-wrapper-md
|
|
1849
|
+
- supports-list
|
|
1850
|
+
- survey-questions
|
|
1851
|
+
- svg-icon
|
|
1852
|
+
- switch
|
|
1853
|
+
- switch-active
|
|
1854
|
+
- switch-inactive
|
|
1855
|
+
- switch-input
|
|
1856
|
+
- switch-paddle
|
|
1857
|
+
- switch-with-label
|
|
1858
|
+
- table-list--lastcenter
|
|
1859
|
+
- table-list--lastleft
|
|
1860
|
+
- tags
|
|
1861
|
+
- tags--inline
|
|
1862
|
+
- tags--list
|
|
1863
|
+
- tech-info
|
|
1864
|
+
- tech-info--text-left
|
|
1865
|
+
- text-compact
|
|
1866
|
+
- text-highlight
|
|
1867
|
+
- text-info
|
|
1868
|
+
- text-justify
|
|
1869
|
+
- text-large
|
|
1870
|
+
- text-lowercase
|
|
1871
|
+
- text-medium
|
|
1872
|
+
- text-muted
|
|
1873
|
+
- text-primary
|
|
1874
|
+
- text-small
|
|
1875
|
+
- text-toggle__long
|
|
1876
|
+
- text-toggle__short
|
|
1877
|
+
- text-uppercase
|
|
1878
|
+
- text-wrap
|
|
1879
|
+
- textarea-char-counter
|
|
1880
|
+
- thumbnail-list
|
|
1881
|
+
- timeline
|
|
1882
|
+
- timeline__content
|
|
1883
|
+
- timeline__date
|
|
1884
|
+
- timeline__footer
|
|
1885
|
+
- timeline__footer-inner
|
|
1886
|
+
- timeline__footer-item
|
|
1887
|
+
- timeline__header
|
|
1888
|
+
- timeline__info
|
|
1889
|
+
- timeline__item
|
|
1890
|
+
- timeline__item--current
|
|
1891
|
+
- timeline__item--inactive
|
|
1892
|
+
- timeline__item-icon
|
|
1893
|
+
- timeline__item-text
|
|
1894
|
+
- timeline__phase
|
|
1895
|
+
- timeline__phase__number
|
|
1896
|
+
- timeline__title
|
|
1897
|
+
- tiny
|
|
1898
|
+
- title-action
|
|
1899
|
+
- title-action__action
|
|
1900
|
+
- title-action__title
|
|
1901
|
+
- title-bar-left
|
|
1902
|
+
- title-bar-right
|
|
1903
|
+
- title-bar-title
|
|
1904
|
+
- title-container
|
|
1905
|
+
- titled
|
|
1906
|
+
- toggle-show
|
|
1907
|
+
- tooltip
|
|
1908
|
+
- tooltip-content
|
|
1909
|
+
- top-bar
|
|
1910
|
+
- top-bar-left
|
|
1911
|
+
- top-bar-right
|
|
1912
|
+
- top-bar-title
|
|
1913
|
+
- topbar
|
|
1914
|
+
- topbar__admin__link
|
|
1915
|
+
- topbar__conversations
|
|
1916
|
+
- topbar__dropmenu
|
|
1917
|
+
- topbar__menu
|
|
1918
|
+
- topbar__notifications
|
|
1919
|
+
- topbar__notifications__item
|
|
1920
|
+
- topbar__notifications__item--more
|
|
1921
|
+
- topbar__search
|
|
1922
|
+
- topbar__user
|
|
1923
|
+
- topbar__user__logged
|
|
1924
|
+
- topbar__user__logged__name
|
|
1925
|
+
- topbar__user__logged__picture
|
|
1926
|
+
- topbar__user__login
|
|
1927
|
+
- tos-agreement
|
|
1928
|
+
- tos-text
|
|
1929
|
+
- translation-bar
|
|
1930
|
+
- tribute-item
|
|
1931
|
+
- type-0
|
|
1932
|
+
- type-1
|
|
1933
|
+
- type-10
|
|
1934
|
+
- type-11
|
|
1935
|
+
- type-2
|
|
1936
|
+
- type-3
|
|
1937
|
+
- type-4
|
|
1938
|
+
- type-5
|
|
1939
|
+
- type-6
|
|
1940
|
+
- type-7
|
|
1941
|
+
- type-8
|
|
1942
|
+
- type-9
|
|
1943
|
+
- unread_message__counter
|
|
1944
|
+
- upload-errors
|
|
1945
|
+
- upload-item
|
|
1946
|
+
- upload-item-first-row
|
|
1947
|
+
- upload-item-second-row
|
|
1948
|
+
- upload-items
|
|
1949
|
+
- upload-modal
|
|
1950
|
+
- user-activity
|
|
1951
|
+
- user-contact_link
|
|
1952
|
+
- user-form
|
|
1953
|
+
- user-form__label
|
|
1954
|
+
- user-group-fields
|
|
1955
|
+
- user-header
|
|
1956
|
+
- user-header__avatar
|
|
1957
|
+
- user-header__heading
|
|
1958
|
+
- user-header__main
|
|
1959
|
+
- user-nickname
|
|
1960
|
+
- usermenu-off-canvas
|
|
1961
|
+
- usermenu-off-canvas-holder
|
|
1962
|
+
- users_count
|
|
1963
|
+
- view-header
|
|
1964
|
+
- view-side
|
|
1965
|
+
- warning[disabled]
|
|
1966
|
+
- wechat-dialog-qr
|
|
1967
|
+
- wechat-popup-close
|
|
1968
|
+
- wechat-popup-footer
|
|
1969
|
+
- wechat-popup-header
|
|
1970
|
+
- white-button
|
|
1971
|
+
- widescreen
|
|
1972
|
+
- with-overflow
|
|
1973
|
+
- with-title
|
|
1974
|
+
- without-overlay
|
|
1975
|
+
- wizard__steps
|
|
1976
|
+
- word-wrapper
|
|
1977
|
+
- words
|
|
1978
|
+
- wrapper--inner
|
|
1979
|
+
- wrapper-home
|
|
1980
|
+
- wrapper-home--mini
|
|
1981
|
+
- wrapper-mini
|
|
1982
|
+
- written_values
|
|
1983
|
+
- xlarge-1
|
|
1984
|
+
- xlarge-10
|
|
1985
|
+
- xlarge-11
|
|
1986
|
+
- xlarge-12
|
|
1987
|
+
- xlarge-2
|
|
1988
|
+
- xlarge-3
|
|
1989
|
+
- xlarge-4
|
|
1990
|
+
- xlarge-5
|
|
1991
|
+
- xlarge-6
|
|
1992
|
+
- xlarge-7
|
|
1993
|
+
- xlarge-8
|
|
1994
|
+
- xlarge-9
|
|
1995
|
+
- xlarge-auto
|
|
1996
|
+
- xlarge-cell-block
|
|
1997
|
+
- xlarge-cell-block-container
|
|
1998
|
+
- xlarge-cell-block-y
|
|
1999
|
+
- xlarge-expanded
|
|
2000
|
+
- xlarge-flex-child-auto
|
|
2001
|
+
- xlarge-flex-child-grow
|
|
2002
|
+
- xlarge-flex-child-shrink
|
|
2003
|
+
- xlarge-flex-container
|
|
2004
|
+
- xlarge-flex-dir-column
|
|
2005
|
+
- xlarge-flex-dir-column-reverse
|
|
2006
|
+
- xlarge-flex-dir-row
|
|
2007
|
+
- xlarge-flex-dir-row-reverse
|
|
2008
|
+
- xlarge-full
|
|
2009
|
+
- xlarge-grid-frame
|
|
2010
|
+
- xlarge-horizontal
|
|
2011
|
+
- xlarge-margin-collapse
|
|
2012
|
+
- xlarge-offset-0
|
|
2013
|
+
- xlarge-offset-1
|
|
2014
|
+
- xlarge-offset-10
|
|
2015
|
+
- xlarge-offset-11
|
|
2016
|
+
- xlarge-offset-2
|
|
2017
|
+
- xlarge-offset-3
|
|
2018
|
+
- xlarge-offset-4
|
|
2019
|
+
- xlarge-offset-5
|
|
2020
|
+
- xlarge-offset-6
|
|
2021
|
+
- xlarge-offset-7
|
|
2022
|
+
- xlarge-offset-8
|
|
2023
|
+
- xlarge-offset-9
|
|
2024
|
+
- xlarge-order-1
|
|
2025
|
+
- xlarge-order-2
|
|
2026
|
+
- xlarge-order-3
|
|
2027
|
+
- xlarge-order-4
|
|
2028
|
+
- xlarge-order-5
|
|
2029
|
+
- xlarge-order-6
|
|
2030
|
+
- xlarge-padding-collapse
|
|
2031
|
+
- xlarge-shrink
|
|
2032
|
+
- xlarge-simple
|
|
2033
|
+
- xlarge-text-center
|
|
2034
|
+
- xlarge-text-justify
|
|
2035
|
+
- xlarge-text-left
|
|
2036
|
+
- xlarge-text-right
|
|
2037
|
+
- xlarge-up-1
|
|
2038
|
+
- xlarge-up-2
|
|
2039
|
+
- xlarge-up-3
|
|
2040
|
+
- xlarge-up-4
|
|
2041
|
+
- xlarge-up-5
|
|
2042
|
+
- xlarge-up-6
|
|
2043
|
+
- xlarge-up-7
|
|
2044
|
+
- xlarge-up-8
|
|
2045
|
+
- xlarge-vertical
|
|
2046
|
+
- year
|
|
2047
|
+
Rubocop:
|
|
2048
|
+
enabled: true
|
|
2049
|
+
|
|
2050
|
+
rubocop_config:
|
|
2051
|
+
inherit_from:
|
|
2052
|
+
- .rubocop.yml
|
|
2053
|
+
|
|
2054
|
+
AllCops:
|
|
2055
|
+
DisabledByDefault: true
|
|
2056
|
+
|
|
2057
|
+
Layout/InitialIndentation:
|
|
2058
|
+
Enabled: false
|
|
2059
|
+
|
|
2060
|
+
Lint/SymbolConversion:
|
|
2061
|
+
Enabled: false
|
|
2062
|
+
|
|
2063
|
+
Layout/SpaceInsideParens:
|
|
2064
|
+
Enabled: false
|
|
2065
|
+
|
|
2066
|
+
Layout/SpaceAfterColon:
|
|
2067
|
+
Enabled: false
|
|
2068
|
+
|
|
2069
|
+
Lint/UselessAssignment:
|
|
2070
|
+
Enabled: false
|
|
2071
|
+
|
|
2072
|
+
Layout/ArgumentAlignment:
|
|
2073
|
+
Enabled: true
|
|
2074
|
+
|
|
2075
|
+
Layout/SpaceAfterComma:
|
|
2076
|
+
Enabled: false
|
|
2077
|
+
|
|
2078
|
+
Layout/TrailingWhitespace:
|
|
2079
|
+
Enabled: false
|
|
2080
|
+
|
|
2081
|
+
Layout/LeadingEmptyLines:
|
|
2082
|
+
Enabled: false
|
|
2083
|
+
|
|
2084
|
+
Layout/SpaceBeforeComma:
|
|
2085
|
+
Enabled: false
|
|
2086
|
+
|
|
2087
|
+
Style/Copyright:
|
|
2088
|
+
Enabled: false
|
|
2089
|
+
|
|
2090
|
+
Style/FrozenStringLiteralComment:
|
|
2091
|
+
Enabled: false
|
|
2092
|
+
|
|
2093
|
+
Style/StringLiterals:
|
|
2094
|
+
EnforcedStyle: double_quotes
|
|
2095
|
+
|
|
2096
|
+
Layout/LineLength:
|
|
2097
|
+
Enabled: false
|
|
2098
|
+
|
|
2099
|
+
Layout/FirstArgumentIndentation:
|
|
2100
|
+
Enabled: false
|
|
2101
|
+
|
|
2102
|
+
Layout/SpaceInsideHashLiteralBraces:
|
|
2103
|
+
Enabled: true
|
|
2104
|
+
|
|
2105
|
+
Layout/BlockAlignment:
|
|
2106
|
+
Enabled: false
|
|
2107
|
+
|
|
2108
|
+
Layout/MultilineMethodCallBraceLayout:
|
|
2109
|
+
Enabled: false
|
|
2110
|
+
|
|
2111
|
+
Layout/FirstArrayElementIndentation:
|
|
2112
|
+
Enabled: false
|
|
2113
|
+
|
|
2114
|
+
Layout/TrailingEmptyLines:
|
|
2115
|
+
Enabled: false
|
|
2116
|
+
|
|
2117
|
+
Naming/FileName:
|
|
2118
|
+
Enabled: false
|
|
2119
|
+
|
|
2120
|
+
Rails/LinkToBlank:
|
|
2121
|
+
Enabled: false
|
|
2122
|
+
|
|
2123
|
+
Naming/VariableName:
|
|
2124
|
+
Enabled: false
|
|
2125
|
+
|
|
2126
|
+
Layout/MultilineMethodCallIndentation:
|
|
2127
|
+
Enabled: true
|
|
2128
|
+
|
|
2129
|
+
Layout/IndentationWidth:
|
|
2130
|
+
Enabled: false
|
|
2131
|
+
|
|
2132
|
+
Layout/MultilineAssignmentLayout:
|
|
2133
|
+
Enabled: false
|
|
2134
|
+
|