Server IP : 15.235.198.142 / Your IP : 216.73.216.112 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/craft/wp-admin/css/colors/ |
Upload File : |
/* * Button mixin- creates a button effect with correct * highlights/shadows, based on a base color. */ @mixin button( $button-color, $button-text-color: #fff ) { background: $button-color; border-color: $button-color; color: $button-text-color; &:hover, &:focus { background: color.adjust($button-color, $lightness: 3%); border-color: color.adjust($button-color, $lightness: -3%); color: $button-text-color; } &:focus { box-shadow: 0 0 0 1px #fff, 0 0 0 3px $button-color; } &:active { background: color.adjust($button-color, $lightness: -5%); border-color: color.adjust($button-color, $lightness: -5%); color: $button-text-color; } &.active, &.active:focus, &.active:hover { background: $button-color; color: $button-text-color; border-color: color.adjust($button-color, $lightness: -15%); box-shadow: inset 0 2px 5px -3px color.adjust($button-color, $lightness: -50%); } }