testio-tailwind 1.1.2 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eleventy.js +2 -5
- package/README.md +1 -37
- package/icon-classes-extractor.js +3 -3
- package/package.json +13 -29
- package/src/_includes/head.njk +3 -3
- package/src/assets/images/pencil.svg +11 -0
- package/src/assets/stylesheets/app.css +94 -69
- package/src/assets/stylesheets/components/alerts.css +1 -1
- package/src/assets/stylesheets/components/cards.css +9 -9
- package/src/assets/stylesheets/components/chat.css +9 -6
- package/src/assets/stylesheets/components/customer/customer_productcards.css +3 -3
- package/src/assets/stylesheets/components/devices.css +1 -1
- package/src/assets/stylesheets/components/forms.css +3 -10
- package/src/assets/stylesheets/components/header.css +1 -2
- package/src/assets/stylesheets/components/icons.css +25 -5
- package/src/assets/stylesheets/components/list_item.css +1 -2
- package/src/assets/stylesheets/components/lists.css +1 -2
- package/src/assets/stylesheets/components/loading_spinner.css +61 -79
- package/src/assets/stylesheets/components/metasidebar.css +1 -2
- package/src/assets/stylesheets/components/notifications.css +1 -1
- package/src/assets/stylesheets/components/select.css +1 -1
- package/src/assets/stylesheets/components/select2.css +1 -1
- package/src/assets/stylesheets/components/splitview.css +6 -6
- package/src/assets/stylesheets/components/tables.css +18 -18
- package/src/assets/stylesheets/components/tags.css +10 -3
- package/src/assets/stylesheets/components/test_header.css +3 -3
- package/src/assets/stylesheets/components/tester/tester_cards.css +4 -4
- package/src/assets/stylesheets/components/trix_editor.css +3 -3
- package/src/assets/stylesheets/components/typography.css +12 -11
- package/src/assets/stylesheets/tailwind_config.css +299 -0
- package/src/assets/stylesheets/tailwind_custom_utilities.css +268 -0
- package/src/index.pug +8 -39
- package/src/pages/components/banner_cards.haml +0 -10
- package/src/pages/components/loading_spinner.haml +5 -5
- package/src/pages/forms/search.haml +2 -2
- package/src/pages/icons/index.njk +35 -2
- package/src/static/icons.json +1 -0
- package/src/static/site.webmanifest +2 -2
- package/src/assets/stylesheets/postcss.config.js +0 -24
- package/src/assets/stylesheets/tailwind.config.js +0 -346
- /package/src/{static → assets/images}/android-chrome-192x192.png +0 -0
- /package/src/{static → assets/images}/android-chrome-512x512.png +0 -0
- /package/src/{static → assets/images}/apple-touch-icon.png +0 -0
- /package/src/{static → assets/images}/favicon-16x16.png +0 -0
- /package/src/{static → assets/images}/favicon-32x32.png +0 -0
|
@@ -23,7 +23,7 @@ const getJSON = function(url, callback) {
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
const fetchIcons = function(appType) {
|
|
26
|
-
getJSON('/static/icons
|
|
26
|
+
getJSON('/static/icons.json',
|
|
27
27
|
function(err, data) {
|
|
28
28
|
if (err !== null) {
|
|
29
29
|
console.log('Something went wrong: ' + err);
|
|
@@ -47,12 +47,45 @@ fetchIcons(app)
|
|
|
47
47
|
<main tabindex="-1" id="main-content" class="main-content-padding main-content">
|
|
48
48
|
|
|
49
49
|
<h1 class="mb-8">Icons</h1>
|
|
50
|
+
|
|
51
|
+
<section class="mb-section-margin">
|
|
52
|
+
<div class="section-header">
|
|
53
|
+
<h4 class="section-title">Icon classes</h4>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="grid gap-5 grid-cols-3">
|
|
56
|
+
<dl class="list-inline">
|
|
57
|
+
<dd><span class="icon-xxs icon-check-circle-filled"></span></dd>
|
|
58
|
+
<dt>.icon-xxs</dt>
|
|
59
|
+
<dd><span class="icon-xs icon-check-circle-filled"></span></dd>
|
|
60
|
+
<dt>.icon-xs</dt>
|
|
61
|
+
<dd><span class="icon-sm icon-check-circle-filled"></span></dd>
|
|
62
|
+
<dt>.icon-sm</dt>
|
|
63
|
+
<dd><span class="icon icon-check-circle-filled"></span></dd>
|
|
64
|
+
<dt>.icon</dt>
|
|
65
|
+
<dd><span class="icon-lg icon-check-circle-filled"></span></dd>
|
|
66
|
+
<dt>.icon-lg</dt>
|
|
67
|
+
<dd><span class="icon-xl icon-check-circle-filled"></span></dd>
|
|
68
|
+
<dt>.icon-xl</dt>
|
|
69
|
+
</dl>
|
|
70
|
+
<div>
|
|
71
|
+
<p class="mb-2">Some icons have additional versions which you can use with the suffix <code class="bg-gray-lighter">-lg</code> and <code class="bg-gray-lighter">-xl</code></p>
|
|
72
|
+
<dl class="list-inline">
|
|
73
|
+
<dd><span class="icon icon-devices"></span></dd>
|
|
74
|
+
<dt>.icon</dt>
|
|
75
|
+
<dd><span class="icon-lg icon-devices-lg"></span></dd>
|
|
76
|
+
<dt>.icon-lg</dt>
|
|
77
|
+
<dd><span class="icon-xl icon-devices-xl"></span></dd>
|
|
78
|
+
<dt>.icon-xl</dt>
|
|
79
|
+
</dl>
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
</section>
|
|
83
|
+
|
|
50
84
|
{%- for section in collection -%}
|
|
51
85
|
<section class="mb-section-margin" id="{{ section.data.title }}">
|
|
52
86
|
<div class="section-header">
|
|
53
87
|
<h4 class="section-title">{{ section.data.title }}</h4>
|
|
54
88
|
</div>
|
|
55
|
-
|
|
56
89
|
{% if section.data.type == 'block' %}
|
|
57
90
|
{% set direction = 'y' %}
|
|
58
91
|
{% else %}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
["icon-cross-thick-centered","icon-check-thick-centered","icon-banking","icon-frozen","icon-map-marker","icon-creditcard-centered","icon-creditcard","icon-seat","icon-vpn","icon-products-filled","icon-image-filled","icon-camera-filled","icon-camera","icon-user-story-test","icon-badge-ai","icon-spelling-underline","icon-arrow-upward","icon-automatic","icon-clock-recent","icon-bug-reproduction-recording-part","icon-bug-reproduction-recording","icon-caret-down-centered","icon-caret-left-centered","icon-caret-right-centered","icon-caret-up-centered","icon-wallet","icon-bookmark-filled","icon-bookmark","icon-play","icon-pause","icon-glossary","icon-feature-draft","icon-xbox","icon-wontfix-circle","icon-wontfix","icon-magicwand-ai","icon-chat-ai-female","icon-chat-ai","icon-volume-filled","icon-bell-off-filled","icon-mail-filled","icon-project-cycle-new","icon-project-cycle","icon-academy","icon-academy-outlined","icon-activity","icon-analytics","icon-apps","icon-archive","icon-archived","icon-arrow-double","icon-arrow-down","icon-arrow-downward","icon-arrow-forward","icon-arrow-left","icon-arrow-menu","icon-arrow-right","icon-arrow-up","icon-asana","icon-assembla","icon-astronaut","icon-at-sign","icon-attachment","icon-autoaccept","icon-bell","icon-bell-filled","icon-billing","icon-blocked","icon-boost","icon-brave","icon-bug","icon-functional","icon-bug-accepted","icon-bug-attachment","icon-bug-cross","icon-bug-custom","icon-bug-duplicate","icon-bug-external","icon-bug-fix-confirmation","icon-bug-fix-confirmation-external","icon-bug-known","icon-bug-liked","icon-bug-open","icon-bug-reproduction","icon-bug-reproduction-blue-red .path1","icon-bug-reproduction-blue-red .path2","icon-bug-reproduction-negative","icon-bug-reproduction-open","icon-bug-reproduction-positive","icon-bug-review","icon-bugherd","icon-bugtracker","icon-bugtracker-configured","icon-bulb","icon-bulb-shining","icon-calendar","icon-cancelled","icon-caret-double-empty","icon-caret-empty-double","icon-caret-down","icon-caret-down-double","icon-caret-left","icon-caret-menu-down","icon-caret-menu-up","icon-caret-right","icon-caret-up","icon-caret-up-double","icon-chat","icon-check","icon-check-circle","icon-check-circle-filled","icon-check-thick","icon-check-thick-outline","icon-checkbox-sm-background","icon-circle-empty","icon-circle-filled","icon-circle-sm-filled","icon-clock","icon-clock-filled","icon-cloud-download","icon-cloud-upload","icon-cog","icon-cog-check","icon-cog-check-filled","icon-cog-clock","icon-cog-cross","icon-cog-dot","icon-cog-exclamation","icon-cog-list","icon-cogs","icon-collaborators-square","icon-computer","icon-desktop","icon-computer-android","icon-desktop-android","icon-computer-apple","icon-desktop-apple","icon-computer-mac-os","icon-computer-chrome-os","icon-computer-linux","icon-desktop-linux","icon-computer-windows","icon-desktop-windows","icon-connected","icon-console","icon-content-bug","icon-content","icon-controller","icon-copy","icon-coverage-test","icon-critical","icon-cross","icon-cross-circle","icon-cross-circle-filled","icon-cross-thick","icon-custom-test","icon-customer","icon-description","icon-devices","icon-devices-windowsmobile","icon-disconnected","icon-unassigned","icon-discord","icon-dispute","icon-document","icon-download","icon-duplicate","icon-edge-chromium","icon-emoticon1","icon-equal","icon-exclamation","icon-exclamation-circle","icon-exclamation-circle-filled","icon-exclamation-double","icon-exclamation-triple","icon-expand","icon-explorative","icon-export","icon-eye","icon-eye-closed","icon-eye-filled","icon-eye-strikethrough","icon-feature","icon-feature-check","icon-feature-cross","icon-feed-filled","icon-feed-outlined","icon-file","icon-file-csv","icon-file-doc","icon-file-image","icon-file-pdf","icon-file-ppt","icon-file-video","icon-file-xls","icon-file-xlsx","icon-file-zip","icon-filter","icon-focused-test","icon-format-bold","icon-format-code","icon-format-heading","icon-format-indent-decrease","icon-format-indent-increase","icon-format-italic","icon-format-link","icon-format-list-bulleted","icon-format-list-numbered","icon-format-mark","icon-format-quote","icon-format-strikethrough","icon-forward","icon-gaming","icon-gem","icon-gift","icon-gig","icon-gig-archived","icon-gig-check","icon-gig-circle","icon-gig-clock","icon-gig-cross","icon-gig-exclamation","icon-gig-list","icon-gig-node","icon-github","icon-globe","icon-hardware","icon-heart","icon-heart-filled","icon-heart-filled2","icon-heart1","icon-high","icon-home","icon-home-filled","icon-ie10","icon-ie-10","icon-ie11","icon-ie-11","icon-ie6","icon-ie-6","icon-ie7","icon-ie-7","icon-ie8","icon-ie-8","icon-ie9","icon-ie-9","icon-image","icon-incognitobrowser","icon-incognito","icon-info","icon-info-circle","icon-info-circle-filled","icon-instructions","icon-integrations","icon-bugzilla","icon-intercom-message","icon-invitation","icon-jira","icon-jira-cloud","icon-jira-server","icon-keyboard-mouse","icon-link","icon-assign","icon-link-external","icon-list","icon-list-bulletpoints","icon-list-numbered","icon-location-filled","icon-lock","icon-logo-io","icon-logo-mobile-cloud","icon-logo-symbol","icon-tc_mark","icon-low","icon-loyalty","icon-mail","icon-mantis","icon-maxthon","icon-menu","icon-message","icon-message-automatic","icon-message-circle","icon-message-exclamation","icon-message-exclamation-filled","icon-message-feedback","icon-message-language","icon-message-question","icon-message-question-filled","icon-minus","icon-more","icon-more-horizontal","icon-move-indicator","icon-move-vertical","icon-msteams","icon-notes","icon-opera-coast","icon-pause-circle-filled","icon-pencil","icon-phone","icon-pivotal","icon-plus","icon-product","icon-products","icon-professional","icon-profile-filled","icon-profile-outlined","icon-project-active","icon-project-completed","icon-project-draft","icon-project-new","icon-project-onboarding","icon-project-past","icon-puzzle","icon-quality","icon-quality-lg","icon-question","icon-question-circle","icon-question-circle-filled","icon-quiz","icon-quotes","icon-ranking","icon-rapid-test","icon-redmine","icon-redo","icon-reliability","icon-remove","icon-remove-filled","icon-reply","icon-report","icon-resize","icon-resume","icon-review","icon-review-bug","icon-review-bug-check","icon-review-bug-check-record-square","icon-review-bug-check-record-triangle","icon-review-bug-cross","icon-review-check","icon-review-clock","icon-review-cross","icon-review-dot","icon-review-exclamation","icon-rocket","icon-samsung-browser","icon-search","icon-section","icon-security","icon-segment-tester","icon-sendmessage","icon-server","icon-service","icon-session-report","icon-shield","icon-shield-check","icon-shield-clock","icon-shield-cross","icon-shield-dot","icon-shield-exclamation","icon-shield-list","icon-shoppingcart-filled","icon-shoppingcart-outline","icon-shutdown","icon-side-arrow","icon-side-arrow-double-xl","icon-side-arrow-lg","icon-side-arrow-sm","icon-side-arrow-xl","icon-silk","icon-skull","icon-slack","icon-smart-tv","icon-smart-tv-android-tv","icon-smart-tv-netcast","icon-smart-tv-roku-os","icon-smart-tv-smart-interactive-tv","icon-smart-tv-smart-tv-alliance","icon-smart-tv-tizen","icon-smart-tv-tvos","icon-smart-tv-webos","icon-smartphone","icon-mobile","icon-smartphone-android","icon-smartphone-apple","icon-smartphone-ios","icon-smartphone-chrome-os","icon-smartphone-windows","icon-smartphone-windows-phone","icon-smartphone-windows-mobile","icon-social-facebook","icon-social-linkedin","icon-social-whatsapp","icon-sort-ascending","icon-sort-az","icon-sort-descending","icon-sort-number-ascending","icon-sort-number-descending","icon-sort-za","icon-speaker","icon-spelling","icon-spelling-test","icon-star","icon-star-filled","icon-star-halffilled","icon-star-rating","icon-star-rating-filled","icon-stop","icon-streaming","icon-streaming-android","icon-streaming-tvos","icon-streaming-fireos","icon-streaming-roku-os","icon-streaming-chromecast-os","icon-surfybrowser","icon-surfy","icon-switch","icon-sync","icon-sync-check","icon-sync-cross","icon-tablet","icon-tablet-android","icon-tablet-chrome-os","icon-tablet-fireos","icon-tablet-ios","icon-tablet-apple","icon-tablet-windows","icon-test","icon-test-archived","icon-test-check","icon-test-ended","icon-test-environment","icon-test-failed","icon-test-initialized","icon-test-locked","icon-test-promoted","icon-test-running","icon-test-scenario","icon-test-stopped","icon-test-template-load","icon-test-template-save","icon-test-template-update","icon-test-waiting","icon-testcase","icon-testcase-bug","icon-testcase-package","icon-testers","icon-testflight","icon-testrail","icon-thumb-down","icon-thumb-down-filled","icon-thumb-up","icon-thumb-up-filled","icon-time-tracking","icon-tools","icon-touch-screen","icon-trello","icon-triangle-centered-down","icon-triangle-centered-left","icon-triangle-centered-right","icon-triangle-centered-up","icon-triangle-down","icon-triangle-up","icon-trophy","icon-uc-browser","icon-unarchive","icon-undo","icon-unlock","icon-upload","icon-usability","icon-suggestion","icon-usability-test","icon-user","icon-user-circle","icon-user-locked","icon-user-outline","icon-user-outline-blocked","icon-user-outline-check","icon-user-outline-circle","icon-user-outline-cross","icon-user-outline-plus","icon-user-profile","icon-user-story","icon-user-story-blocked","icon-user-story-check","icon-user-story-clock","icon-user-story-cross","icon-user-story-open","icon-users","icon-users-filled","icon-verify-check","icon-verify-clock","icon-verify-cross","icon-verify-dot","icon-verify-exclamation","icon-verify-list","icon-visual-bug","icon-visual","icon-warning","icon-warn","icon-warning-check","icon-warning-clock","icon-wearable","icon-wearable-android-wear","icon-wearable-tizen","icon-wearable-watchos","icon-webhook","icon-website","icon-windows-phone","icon-wrench","icon-xray","icon-yandex","icon-youtrack","icon-wallet-lg","icon-banking-lg","icon-corporation-lg","icon-map-marker-outline-lg","icon-creditcard-user-lg","icon-review-passed-lg","icon-creditcard-lg","icon-payment-test-lg","icon-message-language-filled-lg","icon-devices-filled-lg","icon-user-approved-filled-lg","icon-professional-lg","icon-academy-lg","icon-activity-lg","icon-any-android-lg","icon-any-apple-lg","icon-any-linux-lg","icon-any-windows-lg","icon-archived-lg","icon-arrow-info-downward-lg","icon-arrow-info-upward-lg","icon-attachmentreport-lg","icon-automatic-lg","icon-billing-lg","icon-bonus-lg","icon-bug-accepted-lg","icon-bug-accepted-lg-copy","icon-bug-accepted-lg1","icon-bug-clock-lg","icon-bug-custom-lg","icon-bug-fix-confirmation-lg","icon-bug-fixed-lg","icon-bug-forwarded-lg","icon-bug-lg","icon-bug-liked-lg","icon-bug-reproduction-lg","icon-bug-tracked-lg","icon-bugreport-lg","icon-bugtracker-lg","icon-cancelled-lg","icon-chat-lg","icon-check-circle-lg","icon-check-lg","icon-checkcircle-lg","icon-clock-lg","icon-cloud-download-lg","icon-cloud-upload-lg","icon-cogs-lg","icon-coins-stack-lg","icon-computer-android-lg","icon-computer-android-lg1","icon-desktop-android-lg","icon-computer-apple-lg","icon-computer-apple-lg1","icon-desktop-apple-lg","icon-computer-mac-os-lg","icon-computer-chrome-os-lg","icon-computer-lg","icon-computer-lg1","icon-desktop-lg1","icon-computer-linux-lg","icon-computer-linux-lg1","icon-desktop-linux-lg","icon-computer-windows-lg","icon-computer-windows-lg1","icon-desktop-windows-lg","icon-connected-lg","icon-console-lg","icon-content-bug-lg","icon-content-bugreport-lg","icon-coverage-test-lg","icon-critical-lg","icon-criticalissues-lg","icon-cross-lg","icon-crowd-lg","icon-custom-test-lg","icon-database-lg","icon-desktop-lg","icon-development-lg","icon-devices-android-lg","icon-devices-android-lg1","icon-any-android-lg1","icon-devices-apple-lg","icon-devices-apple-lg1","icon-any-apple-lg1","icon-devices-condensed-lg","icon-devices-ios-lg","icon-devices-iot-lg","icon-devices-lg","icon-devices-linux-lg","icon-devices-linux-lg1","icon-any-linux-lg1","icon-devices-macos-lg","icon-devices-windows-lg","icon-devices-windows-lg1","icon-any-windows-lg1","icon-devices-windowsmobile-lg","icon-disconnected-lg","icon-download-lg","icon-drop-here","icon-exclamation-circle-lg","icon-expert-lg","icon-explorative-lg","icon-female-lg","icon-file-image-plus-lg","icon-file-lg","icon-file-unsupported-lg","icon-firstbug-lg","icon-fivestars-lg","icon-focused-test-lg","icon-functional-bugreport-lg","icon-gaming-lg","icon-gauge-lg","icon-gift-lg","icon-globe-lg","icon-hardware-lg","icon-heart-lg","icon-high-lg","icon-info-circle-lg","icon-key-lg","icon-list-check-lg","icon-lock-lg","icon-low-lg","icon-loyalty-lg","icon-male-lg","icon-message-exclamation-filled-lg","icon-message-exclamation-lg","icon-message-lg","icon-mostbugs-lg","icon-mostexperience-lg","icon-mostreproductions-lg","icon-no-customer-support-lg","icon-no-reviews-lg","icon-no-shopping-lg","icon-onboarding-cybersecurity","icon-payment-lg","icon-pencil-lg","icon-plus-lg","icon-products-lg","icon-project-onboarding-lg","icon-promoted-lg","icon-quality-lg1","icon-question-circle-lg","icon-question-lg","icon-quiz-lg","icon-rapid-lg","icon-rapid-test-lg","icon-regression-test-lg","icon-remove-lg","icon-report-attachments-lg","icon-review-bug-check-lg","icon-review-bug-lg","icon-review-inprogress-lg","icon-search-lg","icon-server-lg","icon-session-report-lg","icon-side-arrow-lg1","icon-smart-tv-android-tv-lg","icon-smart-tv-lg","icon-smart-tv-netcast-lg","icon-smart-tv-roku-os-lg","icon-smart-tv-smart-interactive-tv-lg","icon-smart-tv-smart-tv-alliance-lg","icon-smart-tv-tizen-lg","icon-smart-tv-tvos-lg","icon-smart-tv-webos-lg","icon-smartphone-android-lg","icon-smartphone-apple-lg","icon-smartphone-apple-lg1","icon-smartphone-ios-lg","icon-smartphone-apple-lg11","icon-smartphone-chrome-os-lg","icon-smartphone-lg","icon-smartphone-windows-lg","icon-smartphone-windows-lg1","icon-smartphone-windows-phone-lg","icon-smartphone-windows-mobile-lg","icon-spelling-lg","icon-star-filled-lg","icon-star-lg","icon-stars-5-lg","icon-streaming-1und1-os-lg","icon-streaming-android-lg","icon-streaming-chromecast-os-lg","icon-streaming-fireos-lg","icon-streaming-lg","icon-streaming-onboarding-lg","icon-streaming-roku-os-lg","icon-streaming-tizen-os-lg","icon-streaming-tvos-lg","icon-streaming-webos-os-lg","icon-sync-lg","icon-tablet-android-lg","icon-tablet-apple-lg","icon-tablet-chrome-os-lg","icon-tablet-fireos-lg","icon-tablet-ios-lg","icon-tablet-apple-lg1","icon-tablet-lg","icon-tablet-windows-lg","icon-test-archived-lg","icon-test-clock-lg","icon-test-failed-lg","icon-test-initialized-lg","icon-test-lg","icon-test-template-load-lg","icon-test-template-save-lg","icon-test-template-update-lg","icon-test-waiting-lg","icon-testcase-lg","icon-tools-lg","icon-trophy-lg","icon-tv-lg","icon-usability-lg","icon-usability-test-lg","icon-user-approved-outline-lg","icon-user-outline-blocked-lg","icon-user-outline-check-lg","icon-user-outline-cross-lg","icon-user-outline-lg","icon-user-story-check-lg","icon-user-story-cross-lg","icon-user-story-lg","icon-visual-bug-lg","icon-warning-lg","icon-wearable-android-wear-lg","icon-wearable-lg","icon-wearable-tizen-lg","icon-wearable-watchos-lg","icon-webhook-lg","icon-website-lg","icon-world-lg","icon-xbox-lg","icon-creditcard-xl","icon-payment-test-xl","icon-bug-accepted-xl","icon-bug-fix-confirmation-xl","icon-bug-look-left-xl","icon-bug-smile-xl","icon-bug-vacation-xl","icon-canceled-xl","icon-cog-check-xl","icon-connected-xl","icon-critical-issues-xl","icon-dashboard-xl","icon-devices-apple-xl","icon-devices-ios-xl","icon-email-checked-xl","icon-email-sent-xl","icon-feature-xl","icon-file-image-plus-xl","icon-list-check-xl","icon-rapid-xl","icon-report-bug-xl","icon-review-security-xl","icon-side-arrow-double-xl1","icon-side-arrow-xl1","icon-stars-5-check-xl","icon-stars-5-cross-xl","icon-stars-5-edit-xl","icon-stars-5-filled-xl","icon-stars-5-xl","icon-testcase-xl","icon-test-running-xl","icon-unlock-xl","icon-user-outline-xl","icon-user-story-test-xl","icon-project-onboarding-xl","icon-review-bug-xl","icon-user-story-xl","icon-no-shopping-xl","icon-onboarding-cybersecurity1","icon-bug-sad-xl","icon-streaming-onboarding-xl","icon-cirro-app-xl","icon-file-xl","icon-bell-smile-xl","icon-download-xl","icon-hardware-xl","icon-content-bugreport-xl","icon-functional-bugreport-xl","icon-attachmentreport-xl","icon-play-circle-xl","icon-review-bug-check-xl","icon-review-bug-cross-xl","icon-bug-fix-check-xl","icon-bug-fix-cross-xl","icon-users-group-xl","icon-integrations-xl","icon-report-attachments-xl","icon-gaming-xl","icon-bug-reproduction-xl","icon-lock-filled-xl","icon-key-xl","icon-analytics-xl","icon-automatic-xl","icon-billing-xl","icon-bug-chat-xl","icon-bug-deceased-xl","icon-bug-fixed-xl","icon-bug-search-xl","icon-bug-sleeping-xl","icon-bug-tracked-xl","icon-bugreport-xl","icon-cancelled-xl","icon-check-circle-xl","icon-check-xl","icon-clock-xl","icon-cloud-download-xl","icon-cloud-upload-xl","icon-cogs-xl","icon-computer-xl","icon-console-xl","icon-context-xl","icon-conversation-xl","icon-coverage-test-xl","icon-criticalissues-xl","icon-cross-xl","icon-crossbrowser-xl","icon-crowd-xl","icon-custom-test-xl","icon-devices-android-xl","icon-devices-apple-xl1","icon-devices-ios-xl1","icon-devices-apple-xl11","icon-devices-windows-xl","icon-devices-windowsmobile-xl","icon-devices-xl","icon-disconnected-xl","icon-diversity-xl","icon-expert-xl","icon-explorative-xl","icon-fast-xl","icon-feature-new-xl","icon-features-xl","icon-focused-test-xl","icon-heart-xl","icon-list-xl","icon-lock-xl","icon-message-xl","icon-pencil-xl","icon-plus-xl","icon-quiz-xl","icon-quotes-xl","icon-rapid-test-xl","icon-regression-test-xl","icon-remove-xl","icon-review-export-xl","icon-review-failed-xl","icon-review-inprogress-xl","icon-review-passed-xl","icon-review-xl","icon-sanity-test","icon-sanity-test-xl","icon-search-xl","icon-section-xl","icon-security-xl","icon-server-xl","icon-service-xl","icon-smoke-test-xl","icon-stars-check-xl","icon-stars-cross-xl","icon-stars-edit-xl","icon-stars-xl","icon-streaming-xl","icon-test-template-load-xl","icon-test-template-save-xl","icon-test-xl","icon-testcase-xl1","icon-testcase-big","icon-testcase-xl11","icon-testcycle-review-xl","icon-tester-xl","icon-ua-test-xl","icon-usability-test-xl","icon-user-story-testing-xl","icon-warning-xl","icon-website-xl","icon-tree","icon-kb_white","icon-x","icon-twitter","icon-brand2","icon-intercom","icon-optimize","icon-combine","icon-progress","icon-flexible","icon-apple","icon-osx","icon-ios","icon-devices-ios","icon-edge","icon-firefox","icon-ie","icon-safari","icon-android","icon-devices-android","icon-android-browser","icon-chrome","icon-windows","icon-refresh","icon-brackets","icon-tester","icon-key","icon-attachment1","icon-pin","icon-circle","icon-contact_mail","icon-ring_volume","icon-speaker_phone","icon-stay_current_landscape","icon-stay_current_portrait","icon-swap_calls","icon-textsms","icon-sentiment_satisfied_alt","icon-list_alt","icon-domain_disabled","icon-lightbulb","icon-add","icon-add_box","icon-add_circle","icon-add_circle_outline","icon-archive1","icon-backspace","icon-block","icon-clear","icon-content_copy","icon-content_cut","icon-content_paste","icon-remove_circle_outline","icon-reply1","icon-reply_all","icon-report1","icon-save","icon-select_all","icon-send","icon-sort","icon-text_format","icon-undo1","icon-font_download","icon-move_to_inbox","icon-how_to_reg","icon-how_to_vote","icon-waves","icon-where_to_vote","icon-add_link","icon-inventory","icon-access_alarm","icon-access_alarms","icon-access_time","icon-add_alarm","icon-airplanemode_off","icon-airplanemode_on","icon-brightness_medium","icon-data_usage","icon-developer_mode","icon-devices1","icon-dvr","icon-gps_fixed","icon-gps_not_fixed","icon-gps_off","icon-graphic_eq","icon-network_cell","icon-network_wifi","icon-nfc","icon-signal_cellular_off","icon-signal_wifi_4_bar","icon-signal_wifi_4_bar_lock","icon-signal_wifi_off","icon-storage","icon-usb","icon-wifi_lock","icon-wifi_tethering","icon-add_to_home_screen","icon-device_thermostat","icon-mobile_friendly","icon-mobile_off","icon-border_right","icon-border_style","icon-border_top","icon-border_vertical","icon-format_align_center","icon-format_align_justify","icon-format_align_left","icon-format_align_right","icon-format_bold","icon-format_clear","icon-format_color_fill","icon-format_color_reset","icon-format_indent_decrease","icon-format_indent_increase","icon-format_textdirection_l_to_r","icon-format_textdirection_r_to_l","icon-format_underlined","icon-functions","icon-insert_chart","icon-insert_comment","icon-insert_drive_file","icon-insert_emoticon","icon-insert_invitation","icon-insert_photo","icon-mode_comment","icon-publish","icon-short_text","icon-text_fields","icon-monetization_on","icon-title","icon-table_chart","icon-add_comment","icon-format_list_numbered_rtl","icon-scatter_plot","icon-score","icon-insert_chart_outlined","icon-bar_chart","icon-notes1","icon-folder_open","icon-folder_shared","icon-create_new_folder","icon-cast","icon-cast_connected","icon-computer1","icon-desktop_mac","icon-desktop_windows","icon-developer_board","icon-dock","icon-headset","icon-headset_mic","icon-laptop_chromebook","icon-laptop_mac","icon-laptop_windows","icon-memory","icon-mouse","icon-phone_android","icon-phone_iphone","icon-phonelink_off","icon-router","icon-scanner","icon-security1","icon-sim_card","icon-videogame_asset","icon-device_unknown","icon-headset_off","icon-adjust","icon-assistant","icon-audiotrack","icon-blur_circular","icon-blur_linear","icon-blur_off","icon-blur_on","icon-brightness_1","icon-brightness_2","icon-collections","icon-color_lens","icon-colorize","icon-compare","icon-control_point_duplicate","icon-crop_16_9","icon-crop_3_2","icon-crop","icon-crop_5_4","icon-crop_7_5","icon-crop_din","icon-crop_free","icon-google","icon-facebook","icon-facebook-f","icon-winking-face","icon-wink2","icon-sad-face2","icon-sad2","icon-face-stuck-out-tongue","icon-tongue2","icon-laughing-face","icon-laugh2","icon-happy","icon-facebook1","icon-youtube","icon-brand","icon-social","icon-cart","icon-google-plus","icon-brand1","icon-social1","icon-opera","icon-opera-mini","icon-tongue","icon-emoticon","icon-smiley","icon-face","icon-sad","icon-xing"]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
{"name":"","short_name":"","icons":[
|
|
2
|
-
{"src":"/
|
|
3
|
-
{"src":"/
|
|
2
|
+
{"src":"/assets/images/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},
|
|
3
|
+
{"src":"/assets/images/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],
|
|
4
4
|
"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
const tailwindConfig = require('./tailwind.config');
|
|
2
|
-
|
|
3
|
-
module.exports = {
|
|
4
|
-
plugins: [
|
|
5
|
-
require('postcss-import'),
|
|
6
|
-
require('tailwindcss/nesting'),
|
|
7
|
-
require('tailwindcss')({
|
|
8
|
-
content: [
|
|
9
|
-
'./src/**/*.{html,js,haml,pug,njk}',
|
|
10
|
-
],
|
|
11
|
-
theme: tailwindConfig.theme,
|
|
12
|
-
plugins: tailwindConfig.plugins,
|
|
13
|
-
}),
|
|
14
|
-
require('postcss-simple-vars')(
|
|
15
|
-
{
|
|
16
|
-
variables: {
|
|
17
|
-
package_path: '../../..',
|
|
18
|
-
fonts_path: 'fonts'
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
),
|
|
22
|
-
require('autoprefixer')
|
|
23
|
-
]
|
|
24
|
-
}
|
|
@@ -1,346 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
theme: {
|
|
3
|
-
colors: {
|
|
4
|
-
transparent: 'transparent',
|
|
5
|
-
current: 'currentColor',
|
|
6
|
-
|
|
7
|
-
black: '#1d1d1d',
|
|
8
|
-
white: '#fff',
|
|
9
|
-
|
|
10
|
-
gray: {
|
|
11
|
-
100: '#f2f2f2',
|
|
12
|
-
200: '#e6e6e6',
|
|
13
|
-
300: '#bfc1c5',
|
|
14
|
-
400: '#9fa2a8',
|
|
15
|
-
500: '#7c8188',
|
|
16
|
-
600: '#5f656d',
|
|
17
|
-
700: '#343A40',
|
|
18
|
-
800: '#262626',
|
|
19
|
-
900: '#222222',
|
|
20
|
-
'lightest': '#f2f2f2',
|
|
21
|
-
'lighter': '#e6e6e6',
|
|
22
|
-
'light': '#bfc1c5',
|
|
23
|
-
DEFAULT: '#9fa2a8',
|
|
24
|
-
'dark': '#7c8188',
|
|
25
|
-
'darker': '#5f656d',
|
|
26
|
-
'darkest': '#262626',
|
|
27
|
-
},
|
|
28
|
-
red: {
|
|
29
|
-
200: '#FF3131',
|
|
30
|
-
'light': '#FF3131',
|
|
31
|
-
500: '#ec0404',
|
|
32
|
-
DEFAULT: '#ec0404',
|
|
33
|
-
},
|
|
34
|
-
orange: {
|
|
35
|
-
500: '#f48d21',
|
|
36
|
-
DEFAULT: '#f48d21',
|
|
37
|
-
},
|
|
38
|
-
green: {
|
|
39
|
-
500: '#8cbd24',
|
|
40
|
-
DEFAULT: '#8cbd24',
|
|
41
|
-
},
|
|
42
|
-
yellow: {
|
|
43
|
-
500: '#d8ce0d',
|
|
44
|
-
DEFAULT: '#d8ce0d',
|
|
45
|
-
},
|
|
46
|
-
blue: {
|
|
47
|
-
200: '#21bef4',
|
|
48
|
-
'light': '#21bef4',
|
|
49
|
-
500: '#326dd1',
|
|
50
|
-
DEFAULT: '#326dd1',
|
|
51
|
-
},
|
|
52
|
-
petrol: {
|
|
53
|
-
500: '#236a84',
|
|
54
|
-
DEFAULT: '#236a84',
|
|
55
|
-
800: '#263340',
|
|
56
|
-
'dark': '#263340',
|
|
57
|
-
},
|
|
58
|
-
teal: {
|
|
59
|
-
300: '#78eac1',
|
|
60
|
-
'lighter': '#78eac1',
|
|
61
|
-
400: '#6ddeba',
|
|
62
|
-
'light': '#6ddeba',
|
|
63
|
-
500: '#33ba9e',
|
|
64
|
-
DEFAULT: '#33ba9e',
|
|
65
|
-
},
|
|
66
|
-
pink: {
|
|
67
|
-
500: '#e83e8c',
|
|
68
|
-
DEFAULT: '#e83e8c',
|
|
69
|
-
},
|
|
70
|
-
purple: {
|
|
71
|
-
200: '#8988eb',
|
|
72
|
-
'light': '#8988eb',
|
|
73
|
-
500: '#7954ff',
|
|
74
|
-
DEFAULT: '#7954ff',
|
|
75
|
-
},
|
|
76
|
-
},
|
|
77
|
-
fontFamily: {
|
|
78
|
-
'sans': ['Source Sans Pro', 'sans-serif'],
|
|
79
|
-
'serif': ['Source Sans Pro', 'sans-serif'],
|
|
80
|
-
'mono': ['Source Code Pro', 'monospace'],
|
|
81
|
-
'display': ['Source Sans Pro', 'sans-serif'],
|
|
82
|
-
'body': ['Source Sans Pro', 'sans-serif']
|
|
83
|
-
},
|
|
84
|
-
borderWidth: {
|
|
85
|
-
DEFAULT: '1px',
|
|
86
|
-
'0': '0px',
|
|
87
|
-
'1': '1px',
|
|
88
|
-
'2': '2px',
|
|
89
|
-
'4': '4px',
|
|
90
|
-
'6': '6px',
|
|
91
|
-
'10': '10px',
|
|
92
|
-
},
|
|
93
|
-
extend: {
|
|
94
|
-
colors: {
|
|
95
|
-
'appbody': '#FFFFFF',
|
|
96
|
-
'black': '#1d1d1d',
|
|
97
|
-
'primary': '#236a84',
|
|
98
|
-
'link': '#236a84',
|
|
99
|
-
'link-hover': '#21bef4',
|
|
100
|
-
'header': '#1d1d1d',
|
|
101
|
-
'actionbar': '#236a84',
|
|
102
|
-
'bordercolor': '#e6e6e6',
|
|
103
|
-
'bordercolor-dark': '#D4D6DC',
|
|
104
|
-
'success': '#8cbd24',
|
|
105
|
-
'danger': '#ec0404',
|
|
106
|
-
'disabled': '#bfc1c5',
|
|
107
|
-
'disabled-dark': '#5f656d',
|
|
108
|
-
'placeholder': '#bfc1c5',
|
|
109
|
-
'info': '#326dd1',
|
|
110
|
-
'label-color': '#5f656d',
|
|
111
|
-
'label-inverted-color': '#bfc1c5',
|
|
112
|
-
'dark': '#222222',
|
|
113
|
-
'card': '#e6e6e6',
|
|
114
|
-
'critical': '#ec0404',
|
|
115
|
-
'high': '#d8ce0d',
|
|
116
|
-
'low': '#9fa2a8',
|
|
117
|
-
'visual': '#f48d21',
|
|
118
|
-
'content': '#326dd1',
|
|
119
|
-
'usability': '#263340',
|
|
120
|
-
'color-product-website': '#236a84',
|
|
121
|
-
'color-product-apple': '#326dd1',
|
|
122
|
-
'color-product-android': '#8cbd24',
|
|
123
|
-
'color-product-streaming': '#FF3131',
|
|
124
|
-
'color-product-gaming': '#f48d21',
|
|
125
|
-
'color-product-windows': '#d8ce0d',
|
|
126
|
-
'navigation-customer-color': '#262626',
|
|
127
|
-
'navlink-customer-hover-color': '#78eac1',
|
|
128
|
-
'navlink-customer-hover-bg': '#343A40',
|
|
129
|
-
'navlink-customer-active-bg': '#78eac1',
|
|
130
|
-
'navigation-tester-color': '#1d1d1d',
|
|
131
|
-
'navlink-tester-hover-color': '#7954ff',
|
|
132
|
-
'navlink-tester-hover-bg': '#343A40',
|
|
133
|
-
'navlink-tester-active-bg': '#7954ff',
|
|
134
|
-
'navigation-manager-color': '#ffffff',
|
|
135
|
-
'navlink-manager-hover-color': '#222222',
|
|
136
|
-
'navlink-manager-hover-bg': '#e6e6e6',
|
|
137
|
-
'navlink-manager-active-bg': '#6ddeba',
|
|
138
|
-
|
|
139
|
-
},
|
|
140
|
-
fontSize: {
|
|
141
|
-
'heading-1': ['2.25rem', '2.25rem'],
|
|
142
|
-
'heading-2': ['1.875rem', '1.875rem'],
|
|
143
|
-
'heading-3': ['1.563rem', '1.563rem'],
|
|
144
|
-
'heading-4': ['1.375rem', '1.375rem'],
|
|
145
|
-
'heading-5': ['1.125rem', '1.125rem'],
|
|
146
|
-
'heading-6': ['1rem', '1rem'],
|
|
147
|
-
'navlinks': ['14px', '16px'],
|
|
148
|
-
'base': ['14px', '18px'],
|
|
149
|
-
'buttons': ['14px', '16px'],
|
|
150
|
-
'label': ['13px', '13px'],
|
|
151
|
-
'label-sm': ['12px', '12px'],
|
|
152
|
-
'icon': '20px',
|
|
153
|
-
'icon-lg': '40px',
|
|
154
|
-
'icon-xl': '60px',
|
|
155
|
-
'icon-sm': '18px',
|
|
156
|
-
'icon-xs': '16px',
|
|
157
|
-
'icon-xxs': '14px',
|
|
158
|
-
'icon-xxxs': '10px',
|
|
159
|
-
'xl': ['4.25rem', '4.25rem'],
|
|
160
|
-
'lg': ['1.25rem', '1.25rem'],
|
|
161
|
-
'sm': ['0.813rem', '0.813rem'],
|
|
162
|
-
'xs': ['11px', '11px'],
|
|
163
|
-
'xxs': ['10px', '10px'],
|
|
164
|
-
'display-1': ['3.25rem','3.25rem'],
|
|
165
|
-
'display-2': ['3rem','3rem'],
|
|
166
|
-
'display-3': ['2.75rem','2.75rem'],
|
|
167
|
-
'display-4': ['2.5rem','2.5rem'],
|
|
168
|
-
'hidden': ['0rem','0rem'],
|
|
169
|
-
},
|
|
170
|
-
fontWeight: {
|
|
171
|
-
'headings': ['300'],
|
|
172
|
-
'navlinks': ['600'],
|
|
173
|
-
'display': ['300']
|
|
174
|
-
},
|
|
175
|
-
borderRadius: {
|
|
176
|
-
DEFAULT: '5px',
|
|
177
|
-
'default': '0.3rem'
|
|
178
|
-
},
|
|
179
|
-
spacing: {
|
|
180
|
-
'spacing': '30px',
|
|
181
|
-
'xxs': '5px',
|
|
182
|
-
'xs': '10px',
|
|
183
|
-
'sm': '15px',
|
|
184
|
-
'md': '20px',
|
|
185
|
-
'lg': '50px',
|
|
186
|
-
'xl': '60px',
|
|
187
|
-
'xxl': '90px',
|
|
188
|
-
'spacing-2xl': '120px',
|
|
189
|
-
'spacing-3xl': '180px',
|
|
190
|
-
'spacing-4xl': '240px',
|
|
191
|
-
'spacing-5xl': '300px',
|
|
192
|
-
'spacing-6xl': '360px',
|
|
193
|
-
'spacing-7xl': '420px',
|
|
194
|
-
'spacing-8xl': '480px',
|
|
195
|
-
'btn': '40px',
|
|
196
|
-
'btn-xs': '20px',
|
|
197
|
-
'btn-sm': '30px',
|
|
198
|
-
'btn-lg': '90px',
|
|
199
|
-
'btn-xl': '150px',
|
|
200
|
-
'header' : '50px',
|
|
201
|
-
'icon' : '20px',
|
|
202
|
-
'icon-lg' : '40px',
|
|
203
|
-
'icon-xl' : '60px',
|
|
204
|
-
'icon-sm' : '18px',
|
|
205
|
-
'icon-xs' : '16px',
|
|
206
|
-
'icon-xxs' : '14px',
|
|
207
|
-
'icon-spacing' : '8px',
|
|
208
|
-
'heading' : '1rem',
|
|
209
|
-
'heading-lg' : '2rem',
|
|
210
|
-
'section-margin' : '30px',
|
|
211
|
-
'actionbar' : '70px',
|
|
212
|
-
'aside' : '20rem',
|
|
213
|
-
'sidebar' : '200px',
|
|
214
|
-
'grid-gutter' : '20px',
|
|
215
|
-
'13': '3.25rem',
|
|
216
|
-
'30': '7.25rem',
|
|
217
|
-
'144': '36rem',
|
|
218
|
-
'192': '48rem',
|
|
219
|
-
'240': '60rem',
|
|
220
|
-
'body-padding-mobile': '15px',
|
|
221
|
-
'body-padding-tablet': '30px',
|
|
222
|
-
'body-padding-desktop': '50px',
|
|
223
|
-
'card-lg': '380px',
|
|
224
|
-
'card-md': '280px',
|
|
225
|
-
'card-sm': '180px',
|
|
226
|
-
'card-xs': '80px',
|
|
227
|
-
'1px': '1px',
|
|
228
|
-
'modal-lg': '1200px',
|
|
229
|
-
'modal-md': '700px',
|
|
230
|
-
'modal-sm': '400px',
|
|
231
|
-
'progress-bar-thin-height': '2px',
|
|
232
|
-
'progress-bar-thick-height': '10px',
|
|
233
|
-
'meta-sidebar-width': '350px',
|
|
234
|
-
'popover-width': '15rem'
|
|
235
|
-
},
|
|
236
|
-
minWidth: {
|
|
237
|
-
'auto': 'auto',
|
|
238
|
-
'btn': '40px',
|
|
239
|
-
'btn-sm': '30px',
|
|
240
|
-
'cell': '10rem',
|
|
241
|
-
'6': '1.5rem',
|
|
242
|
-
'9': '2.25rem',
|
|
243
|
-
'11': '2.75rem',
|
|
244
|
-
'12': '3rem',
|
|
245
|
-
'24': '6rem',
|
|
246
|
-
'30': '7.25rem',
|
|
247
|
-
'36': '9rem',
|
|
248
|
-
'56': '14rem',
|
|
249
|
-
'spacing': '30px',
|
|
250
|
-
'xxs': '5px',
|
|
251
|
-
'xs': '10px',
|
|
252
|
-
'sm': '15px',
|
|
253
|
-
'md': '20px',
|
|
254
|
-
'lg': '50px',
|
|
255
|
-
'xl': '60px',
|
|
256
|
-
'xxl': '90px',
|
|
257
|
-
'spacing-2xl': '150px',
|
|
258
|
-
'spacing-3xl': '180px',
|
|
259
|
-
'spacing-4xl': '240px',
|
|
260
|
-
'spacing-5xl': '300px',
|
|
261
|
-
'spacing-6xl': '360px',
|
|
262
|
-
'spacing-7xl': '420px',
|
|
263
|
-
'spacing-8xl': '480px'
|
|
264
|
-
},
|
|
265
|
-
minHeight: {
|
|
266
|
-
'auto': 'auto',
|
|
267
|
-
'btn': '40px',
|
|
268
|
-
'btn-sm': '30px',
|
|
269
|
-
'8': '2rem',
|
|
270
|
-
'11': '2.75rem',
|
|
271
|
-
'12': '3rem',
|
|
272
|
-
'16': '4rem',
|
|
273
|
-
'22': '5.5rem',
|
|
274
|
-
'24': '6rem',
|
|
275
|
-
'30': '7.25rem',
|
|
276
|
-
'32': '8rem',
|
|
277
|
-
'48': '12rem',
|
|
278
|
-
'96': '24rem',
|
|
279
|
-
'144': '36rem',
|
|
280
|
-
'spacing': '30px',
|
|
281
|
-
'xxs': '5px',
|
|
282
|
-
'xs': '10px',
|
|
283
|
-
'sm': '15px',
|
|
284
|
-
'md': '20px',
|
|
285
|
-
'lg': '50px',
|
|
286
|
-
'xl': '60px',
|
|
287
|
-
'xxl': '90px',
|
|
288
|
-
},
|
|
289
|
-
maxWidth: {
|
|
290
|
-
'1/2': '50%',
|
|
291
|
-
'2/3': '66%',
|
|
292
|
-
'8': '2rem',
|
|
293
|
-
'32': '8rem',
|
|
294
|
-
'44': '11rem',
|
|
295
|
-
'48': '12rem',
|
|
296
|
-
'96': '24rem',
|
|
297
|
-
'144': '36rem',
|
|
298
|
-
'192': '48rem',
|
|
299
|
-
'xxl': '90px',
|
|
300
|
-
'card-lg': '380px',
|
|
301
|
-
'card-md': '280px',
|
|
302
|
-
'card-sm': '180px',
|
|
303
|
-
'card-xs': '80px',
|
|
304
|
-
'capped': '700px',
|
|
305
|
-
},
|
|
306
|
-
boxShadow: {
|
|
307
|
-
DEFAULT: '0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 0px 0px 0 rgba(0, 0, 0, 0.05)',
|
|
308
|
-
},
|
|
309
|
-
backgroundImage: theme => ({
|
|
310
|
-
'pattern-disabled-bright': "url('/assets/images/pattern-striped-bright.png')",
|
|
311
|
-
'pattern-disabled-dark': "url('/assets/images/pattern-striped-dark.png')"
|
|
312
|
-
}),
|
|
313
|
-
gridTemplateColumns: {
|
|
314
|
-
'3-1': '3fr 1fr',
|
|
315
|
-
'1-3': '1fr 3fr',
|
|
316
|
-
'max-auto': 'max-content auto',
|
|
317
|
-
'4-auto': 'auto auto auto auto',
|
|
318
|
-
'3-auto': 'auto auto auto',
|
|
319
|
-
'2-auto': 'auto auto',
|
|
320
|
-
'2-auto-fr': 'auto auto 1fr',
|
|
321
|
-
'auto-fr-auto': 'auto 1fr auto',
|
|
322
|
-
'auto-fr-2-auto': 'auto 1fr auto auto',
|
|
323
|
-
'auto-fr': 'auto 1fr',
|
|
324
|
-
'auto': 'auto',
|
|
325
|
-
'14': 'repeat(14, minmax(0, 1fr))',
|
|
326
|
-
},
|
|
327
|
-
gridTemplateRows: {
|
|
328
|
-
'auto': 'auto',
|
|
329
|
-
'auto-auto': 'auto auto',
|
|
330
|
-
},
|
|
331
|
-
screens: {
|
|
332
|
-
'3xl': '1930px',
|
|
333
|
-
},
|
|
334
|
-
lineHeight: {
|
|
335
|
-
'ultratight': '0.5',
|
|
336
|
-
},
|
|
337
|
-
outline: {
|
|
338
|
-
'link-hover': '2px solid #21bef4',
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
},
|
|
342
|
-
plugins: [
|
|
343
|
-
require('@tailwindcss/forms'),
|
|
344
|
-
require('@tailwindcss/typography'),
|
|
345
|
-
]
|
|
346
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|