custom.css 380 B

1234567891011121314151617181920212223242526272829303132
  1. 
  2. .flex-row{
  3. display: flex;
  4. flex-direction: row;
  5. }
  6. .flex-col{
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .flex-extend{
  11. flex: 1;
  12. }
  13. .flex-end{
  14. align-self: flex-end;
  15. }
  16. .hidden {
  17. display: none;
  18. }
  19. .disabled{
  20. pointer-events: none;
  21. }
  22. .ui-selected {
  23. background-color: #cce6ff !important;
  24. /*color:#003366 !important;*/
  25. /*font-weight:bold;*/
  26. }