mirror of
https://github.com/flextype/flextype.git
synced 2025-08-17 18:36:39 +02:00
feat(admin-plugin): let's go with rounded borders for now.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
|
||||
.button
|
||||
{
|
||||
@apply px-4 py-2 border border-solid border-dark text-white inline-block w-auto bg-dark cursor-pointer;
|
||||
@apply rounded px-4 py-2 border border-solid border-dark text-white inline-block w-auto bg-dark cursor-pointer;
|
||||
}
|
||||
|
||||
.button--white
|
||||
|
@@ -8,7 +8,7 @@
|
||||
|
||||
.dropdown
|
||||
{
|
||||
@apply px-10 py-6 hidden;
|
||||
@apply px-10 py-6 hidden rounded;
|
||||
}
|
||||
|
||||
.dropdown__item
|
||||
|
@@ -15,7 +15,7 @@
|
||||
|
||||
.form-control
|
||||
{
|
||||
@apply w-full block border border-gray-600 outline-none px-2 py-2;
|
||||
@apply w-full block border rounded border-gray-600 outline-none px-2 py-2;
|
||||
}
|
||||
|
||||
.form-group
|
||||
|
@@ -8,7 +8,7 @@
|
||||
|
||||
.table
|
||||
{
|
||||
@apply w-full;
|
||||
@apply w-full rounded;
|
||||
}
|
||||
|
||||
.table tr:first-of-type th,
|
||||
|
@@ -3,15 +3,16 @@
|
||||
{
|
||||
@apply outline-none block;
|
||||
}
|
||||
|
||||
.select2-dropdown
|
||||
{
|
||||
@apply w-full rounded-none outline-none;
|
||||
@apply w-full rounded outline-none;
|
||||
}
|
||||
|
||||
.select2-container--default .select2-selection--multiple,
|
||||
.select2-container--default .select2-selection--single
|
||||
{
|
||||
@apply px-2 py-2 outline-none rounded-none h-auto;
|
||||
@apply px-2 py-2 outline-none rounded h-auto;
|
||||
}
|
||||
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected]
|
||||
@@ -43,7 +44,7 @@
|
||||
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice
|
||||
{
|
||||
@apply border-dark bg-dark text-white opacity-90 rounded-none;
|
||||
@apply border-dark bg-dark text-white opacity-90 rounded;
|
||||
}
|
||||
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove
|
||||
|
@@ -6,7 +6,7 @@
|
||||
|
||||
.swal2-popup
|
||||
{
|
||||
@apply border-none rounded-none;
|
||||
@apply border-none rounded;
|
||||
}
|
||||
|
||||
.swal2-title
|
||||
@@ -23,7 +23,7 @@
|
||||
.swal2-styled.swal2-confirm
|
||||
{
|
||||
font-size: var(--font-size);
|
||||
@apply px-4 py-2 border border-solid border-dark text-white inline-block w-auto bg-dark rounded-none;
|
||||
@apply px-4 py-2 border border-solid border-dark text-white inline-block w-auto bg-dark rounded;
|
||||
}
|
||||
|
||||
.swal2-styled.swal2-confirm:focus
|
||||
@@ -34,7 +34,7 @@
|
||||
.swal2-styled.swal2-cancel
|
||||
{
|
||||
font-size: var(--font-size);
|
||||
@apply px-4 py-2 border border-solid inline-block w-auto bg-white text-black border-dark rounded-none;
|
||||
@apply px-4 py-2 border border-solid inline-block w-auto bg-white text-black border-dark rounded;
|
||||
}
|
||||
|
||||
.swal2-actions:not(.swal2-loading) .swal2-styled:hover
|
||||
|
@@ -1,11 +1,26 @@
|
||||
.tabs__nav > div
|
||||
{
|
||||
@apply rounded;
|
||||
}
|
||||
|
||||
.tabs__nav > div a:first-of-type
|
||||
{
|
||||
@apply rounded-t;
|
||||
}
|
||||
|
||||
.tabs__nav > div a:last-of-type
|
||||
{
|
||||
@apply rounded-b;
|
||||
}
|
||||
|
||||
.tabs__content
|
||||
{
|
||||
display: none;
|
||||
@apply hidden rounded;
|
||||
}
|
||||
|
||||
.tabs__content--active
|
||||
{
|
||||
display: block;
|
||||
@apply block;
|
||||
}
|
||||
|
||||
.tabs__nav__link--active
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* purgecss start ignore */
|
||||
.trumbowyg-button-pane
|
||||
{
|
||||
@apply bg-white border-b-0;
|
||||
@apply bg-white border-b-0 rounded;
|
||||
}
|
||||
|
||||
.trumbowyg-button-pane::after
|
||||
@@ -12,7 +12,7 @@
|
||||
.trumbowyg-box,
|
||||
.trumbowyg-editor
|
||||
{
|
||||
@apply border-gray-600 m-0;
|
||||
@apply border-gray-600 m-0 rounded;
|
||||
}
|
||||
|
||||
.trumbowyg-button-pane .trumbowyg-open-dropdown::after,
|
||||
|
Reference in New Issue
Block a user