123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /* Custom Elements */
- .console {
- padding:5px;
- border-radius:3px;
- display:block;
- width:100%;
- min-height:300px;
- background-color:rgba(0,0,0,0.75);
- color:#FFF;
- }
- .hidden { display:none; }
- /* Inline Vertical Middle Alignment */
- .vm {
- display:inline-block;
- }
- .m,.vm {
- vertical-align:middle;
- }
- /* Font Weight Bold */
- .strong, .bold {
- font-weight:bold;
- }
- /* Item Editor Header Title Bar (Current Item) */
- #item-editor-header-label {
- margin-left:10px;
-
- }
- /* Edit Item View Icon */
- .edit-item-ico {
- display:inline-block;
- max-width:42px;
- max-height:42px;
- min-width:42px;
- min-height:42px;
- }
- /* Quick Search Item Icon */
- .quick-search-item-ico {
- display:inline-block;
- max-width:42px;
- max-height:42px;
- width:100%;
- height:auto;
- min-width:32px;
- min-height:32px;
- }
- /* Quick Search Item Row */
- .quick-item-search-row {
- transition: all ease 500ms;
- padding-top:3px;
- padding-bottom:3px;
- background-color:rgb(212, 196, 237, 0.01);
- border-radius:10px;
- }
- .quick-item-search-row:hover {
- transition: all ease 750ms;
- cursor:pointer;
- background-color:rgba(212, 196, 237, .99)
-
- }
- /* Quick Item Search List Container */
- #quick-item-list {
- padding-top:4px;
- }
- /* Theme Adjustments */
- .fast-spin {
- -webkit-animation: fa-spin 800ms infinite linear!important;
- animation: fa-spin 800ms infinite linear!important;
- }
- .inline { display:inline-block!important; vertical-align:middle!important; }
- .info-card {
- height:11.50rem!important;
- }
- .va {
- vertical-align:middle!important;
- }
- .n-b-t {
- border-top:none!important;
- }
- .n-b-l {
- border-left:none!important;
- }
- .n-b-r {
- border-right:none!important;
- }
- .n-b-b {
- border-bottom:none!important;
- }
- .n-b-lr {
- border-left:none!important;
- border-right:none!important;
- }
- .n-b-tb {
- border-top:none!important;
- border-bottom:none!important;
- }
- .n-p-t {
- padding-top:0px!important;
- }
- .n-p-l {
- padding-left:0px!important;
- }
- .n-p-r {
- padding-right:0px!important;
- }
- .n-p-b {
- padding-bottom:0px!important;
- }
- .n-p-lr {
- padding-left:0px!important;
- padding-right:0px!important;
- }
- .n-p-tb {
- padding-top:0px!important;
- padding-bottom:0px!important;
- }
- .n-m-t {
- margin-top:0px!important;
- }
- .n-m-l {
- margin-left:0px!important;
- }
- .n-m-r {
- margin-right:0px!important;
- }
- .n-m-b {
- margin-bottom:0px!important;
- }
- .n-m-lr {
- margin-left:0px!important;
- margin-right:0px!important;
- }
- .n-m-tb {
- margin-top:0px!important;
- margin-bottom:0px!important;
- }
|