misc_pterodactyl-panel/resources/assets/styles/components/forms.css

153 lines
3.3 KiB
CSS
Raw Normal View History

textarea, select, input, button {
outline: none;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none !important;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield !important;
}
/**
* Styling for other forms throughout the Panel.
*/
.input {
@apply .appearance-none .p-3 .rounded .border .border-neutral-200 .text-neutral-800 .w-full;
2019-06-17 01:07:57 +00:00
min-width: 0;
transition: border 150ms linear;
2018-06-12 05:36:43 +00:00
&:focus {
2019-02-09 22:44:35 +00:00
@apply .border-primary-400;
2018-06-12 05:36:43 +00:00
}
&:required, &:invalid {
box-shadow: none;
}
2018-06-17 23:53:24 +00:00
&.error {
2019-02-09 22:48:47 +00:00
@apply .text-red-600 .border-red-500;
2018-06-17 23:53:24 +00:00
}
2018-06-12 05:36:43 +00:00
}
.input:disabled {
@apply .bg-neutral-100 .border-neutral-200;
}
label {
@apply .block .text-xs .font-medium .uppercase .text-neutral-700 .mb-2;
}
2019-05-14 23:48:23 +00:00
select:not(.appearance-none) {
@apply .outline-none .appearance-none .block .bg-white .border .border-neutral-200 .text-neutral-400 .p-3 .pr-8 rounded;
transition: border-color 150ms linear, color 150ms linear;
&:hover:not(:disabled), &:focus {
@apply .outline-none .border-primary-500 .text-neutral-700;
}
-webkit-appearance: none;
-moz-appearance: none;
&::-ms-expand {
display: none;
}
background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath d='M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z'/%3e%3c/svg%3e ") no-repeat center center;
background-size: 1rem;
background-position-x: calc(100% - 0.75rem);
}
2018-06-12 05:36:43 +00:00
.input-label {
@apply .block .uppercase .tracking-wide .text-neutral-800 .text-xs .font-bold;
&:not(.mb-0) {
@apply .mb-2;
}
2018-06-12 05:36:43 +00:00
}
.input-help {
@apply .text-xs .text-neutral-400 .pt-2;
2018-06-17 23:53:24 +00:00
&.error {
@apply .text-red-600;
2018-06-17 23:53:24 +00:00
}
2018-06-12 05:36:43 +00:00
}
2019-02-10 01:07:11 +00:00
a.btn {
@apply .no-underline;
}
.btn {
@apply .rounded .p-2;
transition: all 150ms linear;
/**
* Button Colors
*/
&.btn-primary {
@apply .bg-primary-500 .border-primary-600 .border .text-white;
2019-02-10 01:07:11 +00:00
&:hover:not(:disabled) {
@apply .bg-primary-600 .border-primary-800;
}
}
&.btn-green {
@apply .bg-green-500 .border-green-600 .border .text-white;
2019-02-10 01:07:11 +00:00
&:hover:not(:disabled) {
@apply .bg-green-600 .border-green-800;
}
}
&.btn-red {
&:not(.btn-secondary) {
@apply .bg-red-500 .border-red-600 .border .text-white;
}
2019-02-10 01:07:11 +00:00
&:hover:not(:disabled) {
@apply .bg-red-600 .border-red-800;
}
}
&.btn-secondary {
2019-02-10 01:07:11 +00:00
@apply .border .border-neutral-200 .text-neutral-400;
2019-02-10 01:07:11 +00:00
&:hover:not(:disabled) {
@apply .border-neutral-500 .text-neutral-700;
}
2019-02-10 01:07:11 +00:00
&.btn-red:hover:not(:disabled) {
@apply .bg-red-600 .border-red-800 .text-white;
}
}
/**
* Button Sizes
*/
&.btn-jumbo {
@apply .p-4 .w-full .uppercase .tracking-wide .text-sm;
}
&.btn-lg {
@apply .p-4 .uppercase .tracking-wide .text-sm;
}
&.btn-sm {
@apply .px-6 .py-3 .uppercase .tracking-wide .text-sm;
}
&.btn-xs {
@apply .py-2 .px-2 .uppercase .text-xs;
}
&:disabled, &.disabled {
opacity: 0.55;
cursor: default;
}
}