78 lines
1.6 KiB
Plaintext
78 lines
1.6 KiB
Plaintext
|
|
/*
|
||
|
|
* ===================================
|
||
|
|
* UTKIconSample.uss
|
||
|
|
* Icon Sample Specific Styles
|
||
|
|
* ===================================
|
||
|
|
*/
|
||
|
|
|
||
|
|
.utk-sample-icon-count {
|
||
|
|
margin-bottom: 10px;
|
||
|
|
color: rgba(153, 153, 153, 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-search-field {
|
||
|
|
width: 300px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-icon-grid-container {
|
||
|
|
flex-grow: 1;
|
||
|
|
max-height: 500px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-icon-item {
|
||
|
|
width: 80px;
|
||
|
|
height: 80px;
|
||
|
|
margin-right: 4px;
|
||
|
|
margin-bottom: 4px;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
background-color: rgba(38, 38, 38, 0.5);
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-icon-item:hover {
|
||
|
|
background-color: rgba(64, 64, 64, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-icon-label {
|
||
|
|
color: white;
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-icon-name {
|
||
|
|
font-size: 8px;
|
||
|
|
color: rgba(179, 179, 179, 1);
|
||
|
|
white-space: nowrap;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
max-width: 76px;
|
||
|
|
-unity-text-align: middle-center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-image-icon-item {
|
||
|
|
width: 100px;
|
||
|
|
height: 100px;
|
||
|
|
margin-right: 8px;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
background-color: rgba(38, 38, 38, 0.5);
|
||
|
|
border-top-left-radius: 4px;
|
||
|
|
border-top-right-radius: 4px;
|
||
|
|
border-bottom-left-radius: 4px;
|
||
|
|
border-bottom-right-radius: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-image-icon-item:hover {
|
||
|
|
background-color: rgba(64, 64, 64, 0.8);
|
||
|
|
}
|
||
|
|
|
||
|
|
.utk-sample-image-icon-image {
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|