HEX
Server: Apache
System: Linux 185.122.168.184.host.secureserver.net 5.14.0-570.52.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 15 06:39:08 EDT 2025 x86_64
User: barbeatleanalyti (1024)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/barbeatleanalyti/www/public_html/webmail/modules/CoreWebclient/styles/common/buttons.less
.button_mixin(@background) {
	background: @background;
    border: 1px solid darken(@background, 10%);
    color: #ffffff;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
	
	&:hover {
		background: darken(@background, 5%);
	}

	&.disabled {
		color: mix(@background, #fff, 50%);

		&:hover {
			background: @background;
		}
	}
}

.buttons {
    margin-top: 15px;
    text-align: right;
	
	html.rtl & {
		text-align: left;
	}
	
	.button {
		border-radius: 4px;
		cursor: pointer;
		display: inline-block;
		font: bold 10pt Helvetica,Tahoma,Arial,sans-serif;
		padding: 5px 12px;
		text-align: center;
		
		&.disabled {
			cursor: default;
			text-shadow: none !important;
		}
		
		&:hover {
			text-decoration: none;
		}
		
		.transition(background 200ms ease 0s);
		
		.button_mixin(@theme-buttons-primary-background);
		
		&.secondary_button {
			.button_mixin(@theme-buttons-secondary-background);
		}
	}
	
	&.big_single_button {
		margin: 0;
		text-align: center;
		padding: 10px 16px;
		
		.button {
			display: block;
			height: 30px;
			line-height: 30px;
			padding: 5px 0;
			
			.theme-big-single-button();
		}
	}
}