comindware.ui
Version:
Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.
41 lines (35 loc) • 859 B
CSS
.layout__button-view {
display: inline-block;
max-width: 100%;
height: 30px;
line-height: 26px;
cursor: pointer;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
border: 1px solid #dfe4e8;
border-radius: 2px;
background: #f7f6f6;
}
.layout__button-view:hover {
border-color: #bfc2c4;
box-shadow: inset 0 2px 3px #fff;
}
.layout__button-view:active {
border-color: #abaeb0;
box-shadow: inset 0 1px 5px rgba(180,180,180,.5);
}
.layout__button-view-text {
display: inline-block;
font-size: 11px;
font-weight: 500;
padding: 0 10px;
color: #636262;
line-height: inherit;
}
.layout__button-view:hover .layout__button-view-text {
color:#000;
}
.layout__button-view:active .layout__button-view-text {
color:#000;
}