75 lines
1.4 KiB
Plaintext
75 lines
1.4 KiB
Plaintext
.umb-iconpicker {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin: 0;
|
|
}
|
|
|
|
.umb-iconpicker-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 0 0 14.28%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.umb-iconpicker-item button {
|
|
background: transparent;
|
|
border: 0 none;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 15px 0;
|
|
text-decoration: none;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.umb-iconpicker-item button:hover,
|
|
.umb-iconpicker-item button:focus {
|
|
background: @gray-10;
|
|
outline: none;
|
|
}
|
|
|
|
.umb-iconpicker-item.-selected {
|
|
background: @gray-10;
|
|
border: solid 1px @ui-active;
|
|
border-radius: @baseBorderRadius;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.umb-iconpicker-item button:active {
|
|
background: @gray-10;
|
|
}
|
|
|
|
.umb-iconpicker-item i {
|
|
font-size: 30px;
|
|
}
|
|
|
|
|
|
// Color swatch
|
|
.button {
|
|
border: none;
|
|
color: @white;
|
|
padding: 5px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
margin: 5px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
// Circle behind the checkmark
|
|
i.small.active{
|
|
font-size: 14px;
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background-color: rgba(0,0,0,.15);
|
|
float: right;
|
|
}
|