Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TabView.uss 551B

12345678910111213141516171819202122232425262728293031323334353637
  1. #TabView,
  2. #ContentArea {
  3. height: 100%;
  4. }
  5. .flex-container {
  6. display: flex;
  7. }
  8. .row {
  9. flex-direction: row;
  10. }
  11. #TabArea {
  12. margin-top: 10px;
  13. margin-left: 15px;
  14. }
  15. .tab-button {
  16. padding-bottom: 2px;
  17. margin-bottom: 0px;
  18. border-width: 0px;
  19. border-radius: 0px;
  20. font-size: 15px;
  21. background-color: rgba(1, 1, 1, 0);
  22. }
  23. #TabArea .tab-button:hover {
  24. border-bottom-color: #2196F3;
  25. border-bottom-width: 0.25px;
  26. }
  27. #TabArea .tab-button.active {
  28. border-bottom-color: #2196F3;
  29. border-bottom-width: 1.5px;
  30. }