| 1234567891011121314151617181920212223242526272829303132 |
-
- .flex-row{
- display: flex;
- flex-direction: row;
- }
- .flex-col{
- display: flex;
- flex-direction: column;
- }
- .flex-extend{
- flex: 1;
- }
- .flex-end{
- align-self: flex-end;
- }
- .hidden {
- display: none;
- }
- .disabled{
- pointer-events: none;
- }
- .ui-selected {
- background-color: #cce6ff !important;
- /*color:#003366 !important;*/
- /*font-weight:bold;*/
- }
|