Version Description
- Release date: April 4th, 2017
- Release post: http://wp.me/p1moTy-4gA
Major Enhancements
- Easier to navigate Jetpack's feature settings in your dashboard and WordPress.com.
- New WordPress.com Toolbar provides quick access to site management, stats, and other services.
- New MailChimp Subscribe Popup widget.
- Sitemaps are faster and now support sites with a very large amount of posts.
- Contact Form now has a plain-text alternative and better avoids spam filters.
- Debug form includes extra information to better prioritize your support requests.
- Photon can now be used within the dashboard, and supports bbPress topics and replies.
Slightly Less Exciting Enhancements
- Improved previously confusing wording in Stats dashboard, and Featured Content options.
- You can now embed Apple Keynotes straight from icloud.com in your posts and pages.
- Changed Infinite Scroll button text on taxonomy page and added a new filter to short-circuit the
is_last_batch()
method. - Open Graph now uses transients to save image IDs.
- You can now use full URLs in the Social Media Icons widget.
- Milestone widget now allows custom links to open in a new window.
- VideoPress videos can be used as headers in themes that support it, like Twenty Seventeen.
- Extracted the timezone offset method from the Upcoming Events widget so it can be used by other features.
Performance Improvements
- Database load is reduced during updates on large sites with multiple servers by retaining hashes for current and current-1 versions.
- Disk storage is reduced on large multisite networks by storing the
jetpack_file_data
option in thewp_sitemeta
table. - Jetpack plan data now uses the WordPress.com REST API.
- Slovakian language files now rely on WordPress.org's language packs.
Accessibility Improvements
- Improved post details clipping for better screen reader support.
- Updated custom language packs for multiple languages.
Security Improvements
- We now avoid path disclosure via cookies in PHP error messages.
Compatibility Improvements
- Removed deprecated functions
get_theme
andget_current_theme
. - Publicize now works with third-party plugins like WP Recipe Maker.
- Open Graph Meta Tags are now enabled when you use the "Head, Footer and Post Injections" plugin.
- Better support for WooCommerce data sync and backup.
- We now also sync the
sync_via_cron
setting, the user's chosen language, and WP Super Cache's globals and constants. - We no longer sync post types from the WordPress Automatic Plugin and RSS AutoPilot to avoid synchronization issues.
- Sync settings can now be edited from the WordPress.com REST API to better troubleshoot sync issues.
Bug Fixes
- Gravatar is always displayed in Settings.
- Submenu items always use relative links.
- Contact Form avoids PHP notices when using the form in a Text widget.
- Content Options now correctly displays single characters word count on sites with multibyte languages.
- Administrator area translations fixed for several languages.
- Added proper support for Formal/Informal translation versions for languages that support them.
- Site Icons are always used as fallback Open Graph Image tags.
- Protect removes port number when server returns a port alongside a stored IP address.
- Filters ensure that more than 1,024 posts can be excluded from Related Posts.
- When the email is already subscribed we now show the correct notification in the subscription form.
- When using the Email sharing button, we now avoid syntax errors due to unexpected characters in the from name.
- Remove deprecated
jetpack_publicize_post
action. - VideoPress now avoids PHP Notices when fetching video information.
- Instagram base URL now uses
www
in the Social Media Icons widget. - All values entered in Facebook Page Plugin widget settings are now escaped.
- Widget Visibility now avoids memory issues on sites with a lot of registered users.
Download this release
Release Info
Developer | dsmart |
Plugin | ![]() |
Version | 4.8 |
Comparing to | |
See all releases |
Code changes from version 4.7.1 to 4.8
- 3rd-party/bbpress.php +11 -1
- CODE-OF-CONDUCT.md +28 -0
- _inc/accessible-focus.js +19 -0
- _inc/build/admin.dops-style.css +1706 -1404
- _inc/build/admin.dops-style.rtl.css +1705 -1404
- _inc/build/admin.js +0 -22
3rd-party/bbpress.php
CHANGED
@@ -13,6 +13,16 @@ function jetpack_bbpress_compat() {
|
|
13 |
add_action( 'bbp_template_after_single_forum', 'jetpack_sharing_bbpress' );
|
14 |
add_action( 'bbp_template_after_single_topic', 'jetpack_sharing_bbpress' );
|
15 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
|
18 |
/**
|
@@ -25,4 +35,4 @@ function jetpack_bbpress_compat() {
|
|
25 |
*/
|
26 |
function jetpack_sharing_bbpress() {
|
27 |
sharing_display( null, true );
|
28 |
-
}
|
13 |
add_action( 'bbp_template_after_single_forum', 'jetpack_sharing_bbpress' );
|
14 |
add_action( 'bbp_template_after_single_topic', 'jetpack_sharing_bbpress' );
|
15 |
}
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Use Photon for all images in Topics and replies.
|
19 |
+
*
|
20 |
+
* @since 4.9.0
|
21 |
+
*/
|
22 |
+
if ( class_exists( 'Jetpack_Photon' ) && Jetpack::is_module_active( 'photon' ) ) {
|
23 |
+
add_filter( 'bbp_get_topic_content', array( 'Jetpack_Photon', 'filter_the_content' ), 999999 );
|
24 |
+
add_filter( 'bbp_get_reply_content', array( 'Jetpack_Photon', 'filter_the_content' ), 999999 );
|
25 |
+
}
|
26 |
}
|
27 |
|
28 |
/**
|
35 |
*/
|
36 |
function jetpack_sharing_bbpress() {
|
37 |
sharing_display( null, true );
|
38 |
+
}
|
CODE-OF-CONDUCT.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Contributor Code of Conduct
|
2 |
+
|
3 |
+
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4 |
+
|
5 |
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
|
6 |
+
|
7 |
+
Examples of unacceptable behavior by participants include:
|
8 |
+
|
9 |
+
* The use of sexualized language or imagery
|
10 |
+
* Personal attacks
|
11 |
+
* Trolling or insulting/derogatory comments
|
12 |
+
* Public or private harassment
|
13 |
+
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
|
14 |
+
* Other unethical or unprofessional conduct
|
15 |
+
|
16 |
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
17 |
+
|
18 |
+
By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
|
19 |
+
|
20 |
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
|
21 |
+
|
22 |
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by emailing a project maintainer via [this contact form](https://developer.wordpress.com/contact/?g21-subject=Code%20of%20Conduct), with a subject that includes `Code of Conduct`. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident.
|
23 |
+
|
24 |
+
|
25 |
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.3.0, available at [http://contributor-covenant.org/version/1/3/0/][version]
|
26 |
+
|
27 |
+
[homepage]: http://contributor-covenant.org
|
28 |
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
_inc/accessible-focus.js
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
var keyboardNavigation = false,
|
2 |
+
keyboardNavigationKeycodes = [ 9, 32, 37, 38, 39, 40 ]; // keyCodes for tab, space, left, up, right, down respectively
|
3 |
+
|
4 |
+
document.addEventListener( 'keydown', function( event ) {
|
5 |
+
if ( keyboardNavigation ) {
|
6 |
+
return;
|
7 |
+
}
|
8 |
+
if ( keyboardNavigationKeycodes.indexOf( event.keyCode ) !== -1 ) {
|
9 |
+
keyboardNavigation = true;
|
10 |
+
document.documentElement.classList.add( 'accessible-focus' );
|
11 |
+
}
|
12 |
+
} );
|
13 |
+
document.addEventListener( 'mouseup', function() {
|
14 |
+
if ( ! keyboardNavigation ) {
|
15 |
+
return;
|
16 |
+
}
|
17 |
+
keyboardNavigation = false;
|
18 |
+
document.documentElement.classList.remove( 'accessible-focus' );
|
19 |
+
} );
|
_inc/build/admin.dops-style.css
CHANGED
@@ -1,3 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.dops-count {
|
2 |
display: inline-block;
|
3 |
padding: 0.0625rem 0.375rem;
|
@@ -297,93 +462,86 @@
|
|
297 |
* @component Search
|
298 |
*/
|
299 |
.dops-search {
|
|
|
|
|
|
|
|
|
300 |
margin-bottom: 24px;
|
301 |
width: 60px;
|
302 |
height: 51px;
|
303 |
position: relative;
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
.dops-search .dops-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
z-index: 20;
|
314 |
color: #0087be;
|
315 |
cursor: pointer; }
|
316 |
-
.
|
|
|
317 |
outline: dotted 1px #0087be; }
|
318 |
-
|
319 |
-
.dops-search .dops-search-open__icon {
|
320 |
-
width: 50px; } }
|
321 |
-
.dops-search .dops-search-open__icon:hover {
|
322 |
color: #3d596d; }
|
323 |
-
.dops-search .dops-
|
324 |
-
position: absolute;
|
325 |
-
bottom: 0;
|
326 |
-
top: 50%;
|
327 |
-
right: 0;
|
328 |
-
margin-top: -12px;
|
329 |
-
width: 60px;
|
330 |
-
cursor: pointer;
|
331 |
-
z-index: 20;
|
332 |
color: #3d596d;
|
333 |
-
display: none;
|
334 |
opacity: 0;
|
335 |
transition: opacity .2s ease-in; }
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
left: 0;
|
341 |
-
right: 0;
|
342 |
-
top: 50%;
|
343 |
-
margin-top: -8px;
|
344 |
-
font-size: 16px;
|
345 |
-
text-align: center; }
|
346 |
-
@media (max-width: 660px) {
|
347 |
-
.dops-search .dops-search-close__icon::before {
|
348 |
-
font-size: 14px;
|
349 |
-
margin-top: -7px; } }
|
350 |
-
@media (max-width: 660px) {
|
351 |
-
.dops-search .dops-search-close__icon {
|
352 |
-
width: 50px; } }
|
353 |
-
|
354 |
-
.dops-search.is-pinned {
|
355 |
margin-bottom: 0;
|
356 |
-
height: auto;
|
357 |
position: absolute;
|
358 |
-
|
|
|
|
|
|
|
359 |
top: 0;
|
360 |
-
right: 0;
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
|
367 |
.dops-search__input[type="search"] {
|
|
|
|
|
368 |
display: none;
|
369 |
-
position: absolute;
|
370 |
z-index: 10;
|
371 |
top: 0;
|
372 |
-
margin: 0;
|
373 |
-
padding: 0 50px 0 60px;
|
374 |
border: none;
|
|
|
|
|
375 |
background: white;
|
376 |
-
height: 51px;
|
377 |
-moz-appearance: none;
|
378 |
appearance: none;
|
379 |
box-sizing: border-box;
|
380 |
-
|
381 |
-
|
382 |
-
@media (max-width: 660px) {
|
383 |
-
.dops-search__input[type="search"] {
|
384 |
-
opacity: 0;
|
385 |
-
left: 0;
|
386 |
-
padding-left: 50px; } }
|
387 |
.dops-search__input[type="search"]::-webkit-search-cancel-button {
|
388 |
-webkit-appearance: none; }
|
389 |
.dops-search__input[type="search"]:focus {
|
@@ -391,39 +549,103 @@
|
|
391 |
border: none; }
|
392 |
|
393 |
.dops-search.is-open {
|
394 |
-
margin-right: 0 !important;
|
395 |
width: 100%; }
|
396 |
-
.dops-search.is-open .dops-
|
397 |
-
color: #3d596d;
|
398 |
-
|
399 |
-
.dops-search.is-open .dops-search-close__icon {
|
400 |
display: inline-block; }
|
401 |
.dops-search.is-open .dops-search__input,
|
402 |
-
.dops-search.is-open .dops-
|
403 |
opacity: 1; }
|
404 |
.dops-search.is-open .dops-search__input {
|
405 |
display: block; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
|
407 |
.dops-search .dops-spinner {
|
408 |
-
display: none;
|
409 |
-
position: absolute;
|
410 |
-
top: 50%;
|
411 |
-
left: 30px;
|
412 |
-
transform: translate(-50%, -50%); }
|
413 |
-
@media (max-width: 660px) {
|
414 |
-
.dops-search .dops-spinner {
|
415 |
-
left: 25px; } }
|
416 |
|
417 |
-
.dops-search.is-searching .dops-
|
418 |
display: none; }
|
419 |
|
420 |
.dops-search.is-searching .dops-spinner {
|
421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
z-index: 20; }
|
|
|
|
|
423 |
|
424 |
-
|
425 |
-
|
426 |
-
opacity: 1; } }
|
427 |
/**
|
428 |
* Section Nav
|
429 |
*/
|
@@ -698,100 +920,175 @@
|
|
698 |
@media (max-width: 480px) {
|
699 |
.dops-section-nav .dops-search.is-pinned {
|
700 |
height: 46px; } }
|
701 |
-
|
702 |
-
.dops-card {
|
703 |
-
position: relative;
|
704 |
-
margin: 0 auto 0.625rem auto;
|
705 |
-
padding: 1rem;
|
706 |
box-sizing: border-box;
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
.dops-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
.dops-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
752 |
visibility: hidden; }
|
753 |
@media (min-width: 481px) {
|
754 |
-
.dops-card
|
|
|
755 |
padding: 24px; } }
|
756 |
-
.dops-card-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
margin-bottom: 10px; }
|
765 |
-
.dops-card-section .dops-card-section-orient-horizontal .dops-card-section-label {
|
766 |
-
float: left;
|
767 |
-
width: 30%; }
|
768 |
-
@media all and (max-width: 590px) {
|
769 |
-
.dops-card-section .dops-card-section-orient-horizontal .dops-card-section-label {
|
770 |
-
margin-bottom: 10px;
|
771 |
-
float: none;
|
772 |
-
width: 100%; } }
|
773 |
-
.dops-card-section .dops-card-section-orient-horizontal .dops-card-section-content {
|
774 |
-
float: right;
|
775 |
-
width: 70%; }
|
776 |
-
@media all and (max-width: 590px) {
|
777 |
-
.dops-card-section .dops-card-section-orient-horizontal .dops-card-section-content {
|
778 |
-
float: none;
|
779 |
-
width: 100%; } }
|
780 |
-
|
781 |
-
.dops-card-footer {
|
782 |
-
background: #f9f9f9;
|
783 |
-
padding: 15px 20px; }
|
784 |
-
|
785 |
-
.dops-card-icon {
|
786 |
-
float: right;
|
787 |
-
text-transform: capitalize; }
|
788 |
-
.dops-card-icon .genericon {
|
789 |
-
border-radius: 50%;
|
790 |
-
width: 16px;
|
791 |
-
height: 16px;
|
792 |
-
margin-right: 10px;
|
793 |
-
color: #fff;
|
794 |
-
background: #81bf16; }
|
795 |
|
796 |
.dops-card__link-indicator {
|
797 |
color: #c8d7e1;
|
@@ -808,322 +1105,580 @@ a.dops-card:focus {
|
|
808 |
outline: 0; }
|
809 |
a.dops-card:focus .dops-card__link-indicator {
|
810 |
color: tint(#00aadc, 20%); }
|
811 |
-
.dops-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
color: #2e4453;
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
|
|
|
|
|
|
|
|
821 |
overflow: hidden;
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
text
|
826 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
box-sizing: border-box;
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
-
|
834 |
-
|
835 |
-
.dops-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
.dops-button[disabled], .dops-button:disabled {
|
843 |
-
color: #e9eff3;
|
844 |
-
background: white;
|
845 |
-
border-color: #e9eff3;
|
846 |
-
cursor: default; }
|
847 |
-
.dops-button[disabled]:active, .dops-button:disabled:active {
|
848 |
-
border-width: 1px 1px 2px; }
|
849 |
-
.dops-button:focus {
|
850 |
-
outline: 0;
|
851 |
-
border-color: #00aadc;
|
852 |
-
box-shadow: 0 0 0 2px #78dcfa; }
|
853 |
-
.dops-button.is-compact {
|
854 |
-
padding: 7px;
|
855 |
-
color: #668eaa;
|
856 |
-
font-size: 11px;
|
857 |
-
line-height: 1;
|
858 |
-
text-transform: uppercase; }
|
859 |
-
.dops-button.is-compact:disabled {
|
860 |
-
color: #e9eff3; }
|
861 |
-
.dops-button.is-compact .gridicon {
|
862 |
-
top: 4px;
|
863 |
-
margin-top: -8px; }
|
864 |
-
.dops-button.is-compact .gridicons-plus-small {
|
865 |
-
margin-left: -4px; }
|
866 |
-
.dops-button.is-compact .gridicons-plus-small:last-of-type {
|
867 |
-
margin-left: 0; }
|
868 |
-
.dops-button.is-compact .gridicons-plus-small + .gridicon {
|
869 |
-
margin-left: -4px; }
|
870 |
-
.dops-button.hidden {
|
871 |
-
display: none; }
|
872 |
-
.dops-button .gridicon {
|
873 |
-
position: relative;
|
874 |
-
top: 4px;
|
875 |
-
margin-top: -2px;
|
876 |
-
width: 18px;
|
877 |
-
height: 18px; }
|
878 |
-
|
879 |
-
.dops-button.is-primary {
|
880 |
-
background: #00aadc;
|
881 |
-
border-color: #0087be;
|
882 |
-
color: white; }
|
883 |
-
.dops-button.is-primary:hover, .dops-button.is-primary:focus {
|
884 |
-
border-color: #005082;
|
885 |
-
color: white; }
|
886 |
-
.dops-button.is-primary[disabled], .dops-button.is-primary:disabled {
|
887 |
-
background: #bceefd;
|
888 |
-
border-color: #8cc9e2;
|
889 |
-
color: white; }
|
890 |
-
.dops-button.is-primary.is-compact {
|
891 |
color: white; }
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
.dops-button.is-scary:focus {
|
898 |
-
box-shadow: 0 0 0 2px #eba3a3; }
|
899 |
-
.dops-button.is-scary[disabled], .dops-button.is-scary:disabled {
|
900 |
-
color: #f4cdcd;
|
901 |
-
border-color: #e9eff3; }
|
902 |
-
|
903 |
-
.dops-button.is-primary.is-scary {
|
904 |
-
background: #d94f4f;
|
905 |
-
border-color: #a02222;
|
906 |
-
color: white; }
|
907 |
-
.dops-button.is-primary.is-scary:hover, .dops-button.is-primary.is-scary:focus {
|
908 |
-
border-color: #4c1010; }
|
909 |
-
.dops-button.is-primary.is-scary[disabled], .dops-button.is-primary.is-scary:disabled {
|
910 |
-
background: #eba3a3;
|
911 |
-
border-color: #e48484; }
|
912 |
-
|
913 |
-
.dops-button.is-borderless {
|
914 |
-
border: none;
|
915 |
-
color: #668eaa;
|
916 |
-
padding-left: 0;
|
917 |
-
padding-right: 0; }
|
918 |
-
.dops-button.is-borderless:hover {
|
919 |
-
color: #2e4453; }
|
920 |
-
.dops-button.is-borderless:focus {
|
921 |
-
box-shadow: none; }
|
922 |
-
.dops-accessible-focus .dops-button.is-borderless:focus {
|
923 |
-
outline: thin dotted; }
|
924 |
-
.dops-button.is-borderless .gridicon {
|
925 |
-
width: 24px;
|
926 |
-
height: 24px;
|
927 |
-
top: 6px; }
|
928 |
-
.dops-button.is-borderless[disabled], .dops-button.is-borderless:disabled {
|
929 |
-
color: #e9eff3;
|
930 |
background: white;
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
.dops-button.is-borderless.is-scary[disabled] {
|
939 |
-
color: #f4cdcd; }
|
940 |
-
.dops-button.is-borderless.is-compact {
|
941 |
-
background: transparent;
|
942 |
-
border-radius: 0; }
|
943 |
-
.dops-button.is-borderless.is-compact .gridicon {
|
944 |
-
width: 18px;
|
945 |
-
height: 18px;
|
946 |
-
top: 5px; }
|
947 |
-
@keyframes appear {
|
948 |
-
0% {
|
949 |
-
opacity: 0; }
|
950 |
-
100% {
|
951 |
-
opacity: 1; } }
|
952 |
|
953 |
-
.dops-
|
954 |
-
position:
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
|
|
|
|
|
|
967 |
|
968 |
-
.dops-
|
969 |
-
min-height: 64px;
|
970 |
-
width: 100%;
|
971 |
-
padding: 16px;
|
972 |
-
box-sizing: border-box;
|
973 |
display: -ms-flexbox;
|
974 |
display: flex;
|
975 |
-
-ms-flex-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
.dops-foldable-card__header.has-border .dops-foldable-card__expand {
|
984 |
-
border-left: 1px #f3f6f8 solid; }
|
985 |
-
.dops-foldable-card.is-compact .dops-foldable-card__header {
|
986 |
-
padding: 8px 16px;
|
987 |
-
min-height: 40px; }
|
988 |
-
.dops-foldable-card.is-expanded .dops-foldable-card__header {
|
989 |
-
margin-bottom: 0px;
|
990 |
-
height: inherit;
|
991 |
-
min-height: 64px; }
|
992 |
-
.dops-foldable-card.is-expanded.is-compact .dops-foldable-card__header {
|
993 |
-
min-height: 40px; }
|
994 |
-
.dops-foldable-card.is-disabled .dops-foldable-card__header {
|
995 |
-
opacity: 0.2; }
|
996 |
|
997 |
-
.dops-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
.dops-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
|
|
|
|
1010 |
|
1011 |
-
|
1012 |
cursor: pointer;
|
1013 |
-
|
1014 |
-
|
1015 |
-
.dops-foldable-card__main {
|
1016 |
-
max-width: calc( 100% - 36px);
|
1017 |
-
display: block;
|
1018 |
-
-ms-flex-align: center;
|
1019 |
-
align-items: center;
|
1020 |
-
width: 100%;
|
1021 |
-
margin-right: 5px; }
|
1022 |
-
@media (max-width: 480px) {
|
1023 |
-
.dops-foldable-card__main {
|
1024 |
-
-ms-flex: 1 1;
|
1025 |
-
flex: 1 1; } }
|
1026 |
|
1027 |
-
.dops-
|
|
|
|
|
|
|
1028 |
display: -ms-flexbox;
|
1029 |
display: flex;
|
1030 |
-
-ms-flex-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1036 |
|
1037 |
-
.dops-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
|
1055 |
-
.dops-
|
1056 |
-
|
1057 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
|
1059 |
-
.dops-
|
1060 |
-
|
1061 |
-
margin-bottom: 0.125rem;
|
1062 |
-
font-size: 0.875rem;
|
1063 |
-
color: #4f748e; }
|
1064 |
|
1065 |
-
.dops-
|
1066 |
-
|
1067 |
-
.dops-foldable-card.is-expanded .dops-foldable-card__content {
|
1068 |
-
display: block;
|
1069 |
-
padding: 16px;
|
1070 |
-
border-top: 1px solid #f3f6f8; }
|
1071 |
-
.dops-foldable-card.is-compact .dops-foldable-card.is-expanded .dops-foldable-card__content {
|
1072 |
-
padding: 8px; }
|
1073 |
-
.dops-foldable-card.is-expanded .dops-foldable-card__content p:first-child {
|
1074 |
-
margin-top: 0; }
|
1075 |
-
.dops-foldable-card.is-expanded .dops-foldable-card__content p:last-child {
|
1076 |
-
margin-bottom: 0; }
|
1077 |
|
1078 |
-
.dops-
|
1079 |
-
|
1080 |
-
margin-right: 40px;
|
1081 |
-
color: #87a6bc;
|
1082 |
-
font-size: 12px;
|
1083 |
-
transition: opacity 0.2s linear;
|
1084 |
-
display: inline-block; }
|
1085 |
-
.dops-foldable-card.has-expanded-summary .dops-foldable-card__summary, .dops-foldable-card.has-expanded-summary
|
1086 |
-
.dops-foldable-card__summary_expanded {
|
1087 |
-
transition: none;
|
1088 |
-
-ms-flex: 2;
|
1089 |
-
flex: 2;
|
1090 |
-
text-align: right; }
|
1091 |
-
@media (max-width: 480px) {
|
1092 |
-
.dops-foldable-card__summary,
|
1093 |
-
.dops-foldable-card__summary_expanded {
|
1094 |
-
display: none; } }
|
1095 |
|
1096 |
-
.dops-
|
1097 |
-
|
1098 |
-
display: inline-block; }
|
1099 |
-
.dops-foldable-card.is-expanded .dops-foldable-card__summary {
|
1100 |
-
display: none; }
|
1101 |
-
.has-expanded-summary .dops-foldable-card.is-expanded .dops-foldable-card__summary {
|
1102 |
-
display: none; }
|
1103 |
|
1104 |
-
.dops-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
text-align: center;
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1127 |
height: 0;
|
1128 |
line-height: 0;
|
1129 |
position: absolute;
|
@@ -1300,1015 +1855,762 @@ button.dops-foldable-card__action {
|
|
1300 |
.dops-popover__hr {
|
1301 |
margin: 8px 0;
|
1302 |
background: #e9eff3; }
|
1303 |
-
.dops-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
.dops-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
border-bottom-color: #d94f4f; }
|
1315 |
-
|
1316 |
-
.dops-tooltip.dops-popover.is-bottom-right.is-warning .dops-popover__arrow, .dops-tooltip.dops-popover.is-bottom-left.is-warning .dops-popover__arrow, .dops-tooltip.dops-popover.is-bottom.is-warning .dops-popover__arrow {
|
1317 |
-
border-bottom-color: #f0b849; }
|
1318 |
-
|
1319 |
-
.dops-tooltip.dops-popover.is-bottom-right.is-success .dops-popover__arrow, .dops-tooltip.dops-popover.is-bottom-left.is-success .dops-popover__arrow, .dops-tooltip.dops-popover.is-bottom.is-success .dops-popover__arrow {
|
1320 |
-
border-bottom-color: #4ab866; }
|
1321 |
-
|
1322 |
-
.dops-tooltip.dops-popover.is-top .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-left .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-right .dops-popover__arrow {
|
1323 |
-
border-top-color: #3d596d;
|
1324 |
-
bottom: 4px;
|
1325 |
-
right: 10px; }
|
1326 |
-
.dops-tooltip.dops-popover.is-top .dops-popover__arrow::before, .dops-tooltip.dops-popover.is-top-left .dops-popover__arrow::before, .dops-tooltip.dops-popover.is-top-right .dops-popover__arrow::before {
|
1327 |
-
display: none; }
|
1328 |
-
|
1329 |
-
.dops-tooltip.dops-popover.is-top.is-error .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-left.is-error .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-right.is-error .dops-popover__arrow {
|
1330 |
-
border-top-color: #d94f4f; }
|
1331 |
-
|
1332 |
-
.dops-tooltip.dops-popover.is-top.is-warning .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-left.is-warning .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-right.is-warning .dops-popover__arrow {
|
1333 |
-
border-top-color: #f0b849; }
|
1334 |
-
|
1335 |
-
.dops-tooltip.dops-popover.is-top.is-success .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-left.is-success .dops-popover__arrow, .dops-tooltip.dops-popover.is-top-right.is-success .dops-popover__arrow {
|
1336 |
-
border-top-color: #4ab866; }
|
1337 |
-
|
1338 |
-
.dops-tooltip.dops-popover.is-top .dops-popover__arrow, .dops-tooltip.dops-popover.is-bottom .dops-popover__arrow {
|
1339 |
-
margin-left: -6px; }
|
1340 |
-
|
1341 |
-
.dops-tooltip.dops-popover.is-left, .dops-tooltip.dops-popover.is-right {
|
1342 |
-
padding-top: 0; }
|
1343 |
-
.dops-tooltip.dops-popover.is-left .dops-popover__arrow, .dops-tooltip.dops-popover.is-right .dops-popover__arrow {
|
1344 |
-
margin-top: -6px; }
|
1345 |
-
.dops-tooltip.dops-popover.is-left .dops-popover__arrow::before, .dops-tooltip.dops-popover.is-right .dops-popover__arrow::before {
|
1346 |
-
display: none; }
|
1347 |
-
.dops-tooltip.dops-popover.is-left.is-error .dops-popover__arrow, .dops-tooltip.dops-popover.is-right.is-error .dops-popover__arrow {
|
1348 |
-
border-right-color: #d94f4f; }
|
1349 |
-
.dops-tooltip.dops-popover.is-left.is-warning .dops-popover__arrow, .dops-tooltip.dops-popover.is-right.is-warning .dops-popover__arrow {
|
1350 |
-
border-right-color: #f0b849; }
|
1351 |
-
.dops-tooltip.dops-popover.is-left.is-success .dops-popover__arrow, .dops-tooltip.dops-popover.is-right.is-success .dops-popover__arrow {
|
1352 |
-
border-right-color: #4ab866; }
|
1353 |
|
1354 |
-
.dops-
|
1355 |
-
|
1356 |
-
|
|
|
|
|
1357 |
|
1358 |
-
.dops-
|
1359 |
-
|
1360 |
-
border-right-color: #3d596d; }
|
1361 |
|
1362 |
-
.dops-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
background: #3d596d;
|
1368 |
-
font-size: 12px;
|
1369 |
-
padding: 6px 10px;
|
1370 |
text-align: left; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1371 |
|
1372 |
-
.dops-
|
1373 |
-
|
1374 |
-
|
1375 |
-
.dops-tooltip.dops-popover.is-warning .dops-popover__inner {
|
1376 |
-
background: #f0b849; }
|
1377 |
-
|
1378 |
-
.dops-tooltip.dops-popover.is-success .dops-popover__inner {
|
1379 |
-
background: #4ab866; }
|
1380 |
-
|
1381 |
-
.dops-tooltip.dops-popover ul {
|
1382 |
-
list-style: none;
|
1383 |
-
margin: 0;
|
1384 |
padding: 0; }
|
1385 |
-
.dops-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1389 |
|
1390 |
-
.dops-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
position: relative;
|
1395 |
box-sizing: border-box;
|
1396 |
-
|
1397 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1398 |
|
1399 |
-
.dops-
|
1400 |
position: absolute;
|
1401 |
-
top:
|
1402 |
-
left: 0;
|
1403 |
right: 0;
|
1404 |
-
height:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1405 |
|
1406 |
-
.dops-
|
1407 |
-
|
1408 |
-
|
1409 |
-
width: 100%;
|
1410 |
-
height: 1px;
|
1411 |
-
border-top: 1px solid #e9eff3; }
|
1412 |
|
1413 |
-
.dops-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
|
|
1417 |
width: 100%;
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
.dops-chart .dops-chart__y-axis-marker.is-fifty {
|
1424 |
-
top: 50%; }
|
1425 |
|
1426 |
-
.dops-
|
1427 |
-
.dops-chart__y-axis-label.is-zero,
|
1428 |
-
.dops-chart .dops-chart__y-axis-marker.is-zero {
|
1429 |
-
top: 100%; }
|
1430 |
-
|
1431 |
-
.dops-chart__y-axis {
|
1432 |
-
position: relative;
|
1433 |
-
float: right;
|
1434 |
-
height: 200px;
|
1435 |
-
padding: 0 20px 0 10px;
|
1436 |
-
font-size: 11px;
|
1437 |
-
color: #668eaa;
|
1438 |
-
margin-bottom: 30px; }
|
1439 |
-
|
1440 |
-
.dops-chart__y-axis-label {
|
1441 |
-
position: absolute;
|
1442 |
-
top: 0;
|
1443 |
-
right: 20px;
|
1444 |
-
text-align: right; }
|
1445 |
-
|
1446 |
-
.dops-chart__y-axis-width-fix {
|
1447 |
-
color: rgba(255, 255, 255, 0); }
|
1448 |
-
|
1449 |
-
.dops-chart__x-axis {
|
1450 |
-
position: relative;
|
1451 |
-
font-size: 0;
|
1452 |
-
padding: 5px 0;
|
1453 |
-
min-height: 18px;
|
1454 |
-
color: #3d596d; }
|
1455 |
-
|
1456 |
-
.dops-chart__x-axis-label {
|
1457 |
-
position: absolute;
|
1458 |
-
display: inline-block;
|
1459 |
-
vertical-align: top;
|
1460 |
-
font-size: 11px;
|
1461 |
-
text-align: center; }
|
1462 |
-
|
1463 |
-
.dops-chart__x-axis-label::before {
|
1464 |
-
content: '';
|
1465 |
-
display: block;
|
1466 |
-
position: absolute;
|
1467 |
-
top: -4px;
|
1468 |
-
left: 50%;
|
1469 |
-
margin-left: -.5px;
|
1470 |
-
width: 1px;
|
1471 |
-
height: 5px;
|
1472 |
-
background: #f3f6f8;
|
1473 |
-
background-image: linear-gradient(to bottom, #f3f6f8 0%, #c8d7e1 100%); }
|
1474 |
-
|
1475 |
-
.dops-chart__bars {
|
1476 |
-
position: relative;
|
1477 |
-
font-size: 0;
|
1478 |
-
height: 200px;
|
1479 |
-
text-align: center;
|
1480 |
-
overflow: hidden;
|
1481 |
-
display: -ms-flex;
|
1482 |
display: -ms-flexbox;
|
1483 |
-
display: flex;
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
-ms-flex-grow: 1;
|
1491 |
-
-ms-flex-positive: 1;
|
1492 |
-
flex-grow: 1;
|
1493 |
-
-ms-flex-shrink: 1;
|
1494 |
-
-ms-flex-negative: 1;
|
1495 |
-
flex-shrink: 1; }
|
1496 |
-
.dops-chart__bar.is-weekend {
|
1497 |
-
background-color: rgba(233, 239, 243, 0.5); }
|
1498 |
-
.dops-chart__bar:hover {
|
1499 |
-
cursor: pointer;
|
1500 |
-
background-color: rgba(233, 239, 243, 0.3); }
|
1501 |
-
.dops-chart__bar.is-selected {
|
1502 |
-
cursor: default;
|
1503 |
-
background-color: rgba(240, 130, 30, 0.1); }
|
1504 |
|
1505 |
-
.dops-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
z-index: 2; }
|
1514 |
-
.dops-chart__bar:hover .dops-chart__bar-section.is-bar {
|
1515 |
-
background-color: #00aadc; }
|
1516 |
-
.dops-chart__bar.is-selected .dops-chart__bar-section.is-bar {
|
1517 |
-
background-color: #f0821e; }
|
1518 |
-
.dops-chart__bar-section.is-spacer {
|
1519 |
-
z-index: 0;
|
1520 |
-
background-color: rgba(255, 255, 255, 0); }
|
1521 |
-
.dops-chart__bar-section.is-ghost::after {
|
1522 |
-
content: "";
|
1523 |
-
display: block;
|
1524 |
-
position: absolute;
|
1525 |
-
top: 160px;
|
1526 |
-
bottom: 0;
|
1527 |
-
left: 0;
|
1528 |
-
z-index: 1;
|
1529 |
width: 100%;
|
1530 |
-
|
1531 |
-
|
1532 |
-
.dops-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
right: 23.33%;
|
1539 |
-
bottom: 0;
|
1540 |
-
left: 23.33%; }
|
1541 |
-
.dops-chart__bar.is-selected .dops-chart__bar-section-inner {
|
1542 |
-
background-color: #d54e21; }
|
1543 |
|
1544 |
-
.dops-
|
1545 |
-
|
1546 |
-
|
1547 |
-
content: ".";
|
1548 |
-
display: block;
|
1549 |
-
height: 0;
|
1550 |
-
clear: both;
|
1551 |
-
visibility: hidden; }
|
1552 |
|
1553 |
-
.dops-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
font-size: 11px;
|
1559 |
-
text-transform: uppercase;
|
1560 |
-
letter-spacing: 0.1em; }
|
1561 |
-
@media (max-width: 480px) {
|
1562 |
-
.dops-chart__legend .dops-chart__legend-options {
|
1563 |
-
width: 100%; } }
|
1564 |
|
1565 |
-
.dops-
|
1566 |
-
display:
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
|
|
|
|
|
|
|
|
|
|
1572 |
|
1573 |
-
.dops-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1580 |
@media (max-width: 480px) {
|
1581 |
-
.dops-
|
1582 |
-
|
1583 |
-
|
1584 |
-
.dops-chart__legend-option .dops-chart__legend-color {
|
1585 |
-
width: 10px;
|
1586 |
-
height: 10px;
|
1587 |
-
background: #0087be;
|
1588 |
-
display: inline-block;
|
1589 |
-
border-radius: 1px;
|
1590 |
-
vertical-align: top;
|
1591 |
-
margin: 3px 5px 3px 8px; }
|
1592 |
-
|
1593 |
-
@media (max-width: 480px) {
|
1594 |
-
.dops-chart__legend-option:first-child .dops-chart__legend-color {
|
1595 |
-
margin-left: 2px; } }
|
1596 |
-
|
1597 |
-
.dops-chart__legend-color.is-dark-blue {
|
1598 |
-
background: #004069; }
|
1599 |
-
|
1600 |
-
.dops-chart__legend-option .dops-chart__legend-checkbox {
|
1601 |
-
margin: 0;
|
1602 |
-
float: none;
|
1603 |
-
vertical-align: top; }
|
1604 |
|
1605 |
-
.dops-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
font-size: 14px;
|
1613 |
-
line-height: 24px;
|
1614 |
-
clear: both;
|
1615 |
-
z-index: 1; }
|
1616 |
|
1617 |
-
.dops-
|
|
|
|
|
|
|
|
|
|
|
1618 |
position: relative;
|
1619 |
-
|
1620 |
-
padding: 11px 24px;
|
1621 |
-
margin-bottom: 24px;
|
1622 |
border-radius: 1px;
|
1623 |
-
background: #fff;
|
1624 |
box-sizing: border-box;
|
1625 |
font-size: 14px;
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
.dops-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1656 |
display: block;
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
color: #c8d7e1; }
|
1678 |
-
.dops-chart__tooltip .dops-popover__inner ul li .label {
|
1679 |
-
display: block;
|
1680 |
-
overflow: hidden;
|
1681 |
-
word-break: break-all;
|
1682 |
-
vertical-align: baseline; }
|
1683 |
-
.dops-chart__tooltip .dops-popover__inner ul li .gridicon {
|
1684 |
-
vertical-align: middle;
|
1685 |
-
margin-right: 6px;
|
1686 |
-
margin-top: -3px; }
|
1687 |
|
1688 |
-
.dops-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1696 |
position: relative;
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1710 |
|
1711 |
-
.dops-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
padding-bottom: 2px; }
|
1718 |
|
1719 |
-
.dops-
|
1720 |
-
|
1721 |
-
.dops-chart__tooltip .dops-module-content-list-item.is-published-item .label {
|
1722 |
-
text-transform: none;
|
1723 |
-
color: #c8d7e1;
|
1724 |
-
overflow: hidden;
|
1725 |
-
letter-spacing: 0;
|
1726 |
-
height: 19px; }
|
1727 |
-
.dops-chart__tooltip .dops-module-content-list-item.is-published-item .value {
|
1728 |
-
width: 0;
|
1729 |
-
min-width: 0; }
|
1730 |
-
.dops-chart__tooltip .dops-module-content-list-item.is-published-item .value::before {
|
1731 |
-
content: '';
|
1732 |
-
position: relative;
|
1733 |
-
background-image: linear-gradient(to right, rgba(61, 89, 109, 0) 0%, rgba(61, 89, 109, 0.5), #3d596d);
|
1734 |
-
left: -30px;
|
1735 |
-
width: 30px;
|
1736 |
-
height: 24px;
|
1737 |
-
display: block; }
|
1738 |
-
@keyframes appear {
|
1739 |
-
0% {
|
1740 |
-
opacity: 0; }
|
1741 |
-
100% {
|
1742 |
-
opacity: 1; } }
|
1743 |
|
1744 |
-
.dops-
|
1745 |
-
|
1746 |
-
display: flex;
|
1747 |
-
-ms-flex-direction: column;
|
1748 |
-
flex-direction: column;
|
1749 |
-
position: relative;
|
1750 |
-
width: 100%;
|
1751 |
-
margin-bottom: 24px;
|
1752 |
-
background: #e9eff3;
|
1753 |
-
box-sizing: border-box;
|
1754 |
-
animation: appear .3s ease-in-out; }
|
1755 |
-
@media (min-width: 481px) {
|
1756 |
-
.dops-notice {
|
1757 |
-
-ms-flex-direction: row;
|
1758 |
-
flex-direction: row; } }
|
1759 |
-
.dops-notice.is-success {
|
1760 |
-
background: #4ab866; }
|
1761 |
-
.dops-notice.is-warning {
|
1762 |
-
background: #f0b849; }
|
1763 |
-
.dops-notice.is-error {
|
1764 |
-
background: #d94f4f; }
|
1765 |
-
.dops-notice.is-info {
|
1766 |
-
background: #0087be; }
|
1767 |
-
.dops-notice.is-success, .dops-notice.is-error, .dops-notice.is-warning, .dops-notice.is-info {
|
1768 |
-
color: white; }
|
1769 |
-
.dops-notice.is-success .dops-notice__text a, .dops-notice.is-error .dops-notice__text a, .dops-notice.is-warning .dops-notice__text a, .dops-notice.is-info .dops-notice__text a {
|
1770 |
-
color: white; }
|
1771 |
-
.dops-notice.is-success .dops-notice__dismiss, .dops-notice.is-error .dops-notice__dismiss, .dops-notice.is-warning .dops-notice__dismiss, .dops-notice.is-info .dops-notice__dismiss {
|
1772 |
-
color: white; }
|
1773 |
-
.dops-notice.is-basic {
|
1774 |
-
background: white;
|
1775 |
-
color: #87a6bc;
|
1776 |
-
box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; }
|
1777 |
-
.dops-notice.is-basic .dops-notice__dismiss:focus {
|
1778 |
-
box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3; }
|
1779 |
-
@media (min-width: 661px) {
|
1780 |
-
.dops-notice.is-basic:before {
|
1781 |
-
display: none; } }
|
1782 |
|
1783 |
-
.dops-
|
1784 |
-
|
1785 |
-
top: 0;
|
1786 |
-
left: 0;
|
1787 |
-
display: -ms-flexbox;
|
1788 |
-
display: flex;
|
1789 |
-
-ms-flex-negative: 0;
|
1790 |
-
flex-shrink: 0;
|
1791 |
-
width: 18px;
|
1792 |
-
height: 18px;
|
1793 |
-
padding: 14px 16px; }
|
1794 |
-
@media (min-width: 481px) {
|
1795 |
-
.dops-notice__icon {
|
1796 |
-
position: relative;
|
1797 |
-
padding: 13px 0 13px 16px;
|
1798 |
-
width: 24px;
|
1799 |
-
height: 24px; } }
|
1800 |
|
1801 |
-
.dops-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
font-size: 12px; }
|
1808 |
-
@media (min-width: 481px) {
|
1809 |
-
.dops-notice__content {
|
1810 |
-
font-size: 14px;
|
1811 |
-
padding: 13px; } }
|
1812 |
|
1813 |
-
.dops-
|
1814 |
-
|
1815 |
-
.dops-notice__text a {
|
1816 |
-
text-decoration: underline; }
|
1817 |
-
.dops-notice__text ul {
|
1818 |
-
margin-bottom: 0;
|
1819 |
-
margin-left: 0; }
|
1820 |
-
.dops-notice__text li {
|
1821 |
-
margin-left: 2em;
|
1822 |
-
margin-top: 0.5em; }
|
1823 |
-
.dops-notice__text p {
|
1824 |
-
margin-bottom: 0;
|
1825 |
-
margin-top: 0.5em; }
|
1826 |
-
.dops-notice__text p:first-child {
|
1827 |
-
margin-top: 0; }
|
1828 |
|
1829 |
-
.dops-
|
1830 |
-
|
1831 |
-
margin-left: 0.428em; }
|
1832 |
|
1833 |
-
.dops-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1834 |
position: absolute;
|
1835 |
-
top:
|
|
|
1836 |
right: 0;
|
1837 |
-
|
1838 |
-
display: flex;
|
1839 |
-
-ms-flex-negative: 0;
|
1840 |
-
flex-shrink: 0;
|
1841 |
-
padding: 14px 16px;
|
1842 |
-
cursor: pointer;
|
1843 |
-
color: #87a6bc; }
|
1844 |
-
.dops-notice__dismiss .gridicon {
|
1845 |
-
width: 18px;
|
1846 |
-
height: 18px; }
|
1847 |
-
@media (min-width: 481px) {
|
1848 |
-
.dops-notice__dismiss {
|
1849 |
-
position: relative;
|
1850 |
-
padding: 13px 16px; }
|
1851 |
-
.dops-notice__dismiss .gridicon {
|
1852 |
-
width: 24px;
|
1853 |
-
height: 24px; } }
|
1854 |
-
.dops-notice__dismiss:hover, .dops-notice__dismiss:focus {
|
1855 |
-
color: #2e4453; }
|
1856 |
-
.dops-notice .dops-notice__dismiss {
|
1857 |
-
color: #87a6bc;
|
1858 |
-
opacity: 0.85; }
|
1859 |
-
.dops-notice .dops-notice__dismiss:hover, .dops-notice .dops-notice__dismiss:focus {
|
1860 |
-
opacity: 1; }
|
1861 |
|
1862 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1863 |
display: -ms-flexbox;
|
1864 |
-
display: flex;
|
1865 |
-
|
1866 |
-
|
1867 |
-
-
|
1868 |
-
|
|
|
|
|
|
|
1869 |
-ms-flex-positive: 1;
|
1870 |
flex-grow: 1;
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
a.dops-notice__action {
|
1883 |
-
-ms-flex-negative: 1;
|
1884 |
-
flex-shrink: 1;
|
1885 |
-
-ms-flex-positive: 0;
|
1886 |
-
flex-grow: 0;
|
1887 |
-
-ms-flex-align: center;
|
1888 |
-
align-items: center;
|
1889 |
-
border-radius: 0;
|
1890 |
-
font-size: 14px;
|
1891 |
-
margin: 0 0 0 auto;
|
1892 |
-
padding: 13px 16px; }
|
1893 |
-
a.dops-notice__action .gridicon {
|
1894 |
-
width: 24px;
|
1895 |
-
height: 24px; } }
|
1896 |
-
.is-success a.dops-notice__action,
|
1897 |
-
.is-error a.dops-notice__action,
|
1898 |
-
.is-warning a.dops-notice__action,
|
1899 |
-
.is-info a.dops-notice__action {
|
1900 |
-
color: white; }
|
1901 |
-
.is-success a.dops-notice__action {
|
1902 |
-
background: #338247; }
|
1903 |
-
.is-error a.dops-notice__action {
|
1904 |
-
background: #b52727; }
|
1905 |
-
.is-warning a.dops-notice__action {
|
1906 |
-
background: #da9712; }
|
1907 |
-
.is-info a.dops-notice__action {
|
1908 |
-
background: #005172; }
|
1909 |
-
a.dops-notice__action .gridicon {
|
1910 |
-
margin-left: 8px;
|
1911 |
-
opacity: 0.7;
|
1912 |
-
width: 18px;
|
1913 |
-
height: 18px; }
|
1914 |
-
a.dops-notice__action:hover, a.dops-notice__action:focus {
|
1915 |
-
background: rgba(255, 255, 255, 0.2); }
|
1916 |
-
|
1917 |
-
.dops-notice.is-compact {
|
1918 |
-
display: -ms-inline-flexbox;
|
1919 |
-
display: inline-flex;
|
1920 |
-
-ms-flex-wrap: nowrap;
|
1921 |
-
flex-wrap: nowrap;
|
1922 |
-
-ms-flex-direction: row;
|
1923 |
-
flex-direction: row;
|
1924 |
-
width: auto;
|
1925 |
-
border-radius: 2px;
|
1926 |
-
min-height: 20px;
|
1927 |
-
margin: 0;
|
1928 |
-
padding: 0;
|
1929 |
-
text-decoration: none;
|
1930 |
-
text-transform: none;
|
1931 |
-
vertical-align: middle; }
|
1932 |
-
.dops-notice.is-compact.is-success, .dops-notice.is-compact.is-error, .dops-notice.is-compact.is-warning, .dops-notice.is-compact.is-info {
|
1933 |
-
color: white; }
|
1934 |
-
.dops-notice.is-compact .dops-notice__content {
|
1935 |
-
font-size: 12px;
|
1936 |
-
padding: 6px 8px; }
|
1937 |
-
.dops-notice.is-compact .dops-notice__text {
|
1938 |
-
line-height: 1; }
|
1939 |
-
.dops-notice.is-compact .dops-notice__icon {
|
1940 |
-
position: relative;
|
1941 |
-
-ms-flex-item-align: center;
|
1942 |
-
-ms-grid-row-align: center;
|
1943 |
-
align-self: center;
|
1944 |
-
-ms-flex-negative: 0;
|
1945 |
-
flex-shrink: 0;
|
1946 |
-
margin: 0 0 0 8px;
|
1947 |
-
padding: 0;
|
1948 |
-
width: 18px;
|
1949 |
-
height: 18px;
|
1950 |
-
vertical-align: middle; }
|
1951 |
-
.dops-notice.is-compact .dops-notice__dismiss {
|
1952 |
-
display: none; }
|
1953 |
-
.dops-notice.is-compact a.dops-notice__action {
|
1954 |
-
background: transparent;
|
1955 |
-
display: inline-block;
|
1956 |
-
margin: 0;
|
1957 |
-
font-size: 12px;
|
1958 |
-
font-weight: 600;
|
1959 |
-
-ms-flex-item-align: center;
|
1960 |
-
-ms-grid-row-align: center;
|
1961 |
-
align-self: center;
|
1962 |
-
margin-left: 16px;
|
1963 |
-
padding: 0 8px;
|
1964 |
-
text-decoration: underline;
|
1965 |
-
text-transform: uppercase; }
|
1966 |
-
.dops-notice.is-compact a.dops-notice__action:hover, .dops-notice.is-compact a.dops-notice__action:active, .dops-notice.is-compact a.dops-notice__action:focus {
|
1967 |
-
background: transparent;
|
1968 |
-
text-decoration: none; }
|
1969 |
-
.dops-notice.is-compact a.dops-notice__action .gridicon {
|
1970 |
-
margin-left: 8px;
|
1971 |
-
width: 14px;
|
1972 |
-
height: 14px;
|
1973 |
-
vertical-align: sub;
|
1974 |
-
opacity: 1; }
|
1975 |
-
.dops-section-header.dops-card {
|
1976 |
-
display: -ms-flexbox;
|
1977 |
-
display: flex;
|
1978 |
-
-ms-flex-wrap: wrap;
|
1979 |
-
flex-wrap: wrap;
|
1980 |
-
max-width: 100%;
|
1981 |
-
padding-top: 0.6875rem;
|
1982 |
-
padding-bottom: 0.6875rem;
|
1983 |
-
position: relative; }
|
1984 |
-
.dops-section-header.dops-card:after {
|
1985 |
-
content: ''; }
|
1986 |
-
|
1987 |
-
.dops-section-header__label {
|
1988 |
-
display: -ms-flexbox;
|
1989 |
-
display: flex;
|
1990 |
-
-ms-flex-align: center;
|
1991 |
-
align-items: center;
|
1992 |
-
-ms-flex-positive: 1;
|
1993 |
-
flex-grow: 1;
|
1994 |
-
min-width: 0;
|
1995 |
-
line-height: 1.75rem;
|
1996 |
-
position: relative;
|
1997 |
-
color: #87a6bc;
|
1998 |
-
font-size: 0.875rem; }
|
1999 |
-
.dops-section-header__label .dops-count {
|
2000 |
-
margin-left: 0.5rem; }
|
2001 |
|
2002 |
-
.dops-section
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012 |
display: block;
|
2013 |
position: absolute;
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
background: linear-gradient(to
|
2021 |
-
|
2022 |
-
|
2023 |
-
right: 0px;
|
2024 |
-
left: auto;
|
2025 |
-
width: 8px;
|
2026 |
-
height: auto; }
|
2027 |
-
.has-card-badge .dops-section-header__label-text {
|
2028 |
-
width: auto; }
|
2029 |
|
2030 |
-
.dops-section-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2035 |
content: ".";
|
2036 |
display: block;
|
2037 |
height: 0;
|
2038 |
clear: both;
|
2039 |
visibility: hidden; }
|
2040 |
|
2041 |
-
.
|
2042 |
-
float:
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
|
|
|
|
|
|
|
|
2048 |
|
2049 |
-
.
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
height: 24px;
|
2057 |
-
background: #a8bece;
|
2058 |
-
vertical-align: middle;
|
2059 |
-
outline: 0;
|
2060 |
-
cursor: pointer;
|
2061 |
-
transition: all .4s ease, box-shadow 0; }
|
2062 |
-
.form-toggle__switch:before, .form-toggle__switch:after {
|
2063 |
-
position: relative;
|
2064 |
-
display: block;
|
2065 |
-
content: "";
|
2066 |
-
width: 20px;
|
2067 |
-
height: 20px; }
|
2068 |
-
.form-toggle__switch:after {
|
2069 |
-
left: 0;
|
2070 |
-
border-radius: 50%;
|
2071 |
-
background: white;
|
2072 |
-
transition: all .2s ease; }
|
2073 |
-
.form-toggle__switch:before {
|
2074 |
-
display: none; }
|
2075 |
-
.form-toggle__switch:hover {
|
2076 |
-
background: #c8d7e1; }
|
2077 |
-
.dops-accessible-focus .form-toggle__switch:focus, .form-toggle__switch:focus {
|
2078 |
-
box-shadow: 0 0 0 2px #00aadc; }
|
2079 |
|
2080 |
-
.
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2084 |
|
2085 |
-
.dops-
|
2086 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2087 |
|
2088 |
-
|
2089 |
-
|
|
|
2090 |
|
2091 |
-
.
|
2092 |
-
background: #
|
2093 |
-
.form-toggle:checked + .form-toggle__label .form-toggle__switch:after {
|
2094 |
-
left: 16px; }
|
2095 |
|
2096 |
-
.
|
2097 |
-
|
|
|
|
|
2098 |
|
2099 |
-
.
|
2100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2101 |
|
2102 |
-
.
|
2103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2104 |
|
2105 |
-
.
|
2106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2107 |
|
2108 |
-
.
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
|
|
|
|