EdgegapServerData.uss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .row__port-table {
  2. padding: 2px 4px;
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. width: auto;
  7. justify-content: space-around;
  8. -unity-text-align: middle-left;
  9. }
  10. .row__port-table > * {
  11. width: 0px;
  12. flex-grow: 1;
  13. align-self: center;
  14. margin: 0px;
  15. padding: 0px;
  16. }
  17. .focusable:hover {
  18. background-color: rgba(0,0,0,0.2);
  19. border-radius: 3px;
  20. }
  21. .row__dns {
  22. display: flex;
  23. flex-direction: row;
  24. align-items: center;
  25. width: auto;
  26. justify-content: space-between;
  27. -unity-text-align: middle-left;
  28. }
  29. .row__status {
  30. display: flex;
  31. flex-direction: row;
  32. align-items: center;
  33. width: auto;
  34. justify-content: space-between;
  35. -unity-text-align: middle-left;
  36. }
  37. .label__header {
  38. -unity-font-style: bold
  39. }
  40. .label__status {
  41. -unity-font-style: bold;
  42. border-radius: 2px;
  43. width: 100px;
  44. color: #fff;
  45. -unity-text-align: middle-center;
  46. }
  47. .label__info-text {
  48. padding: 8px;
  49. margin: 4px;
  50. border-radius: 3px;
  51. -unity-text-align: middle-center;
  52. white-space: normal;
  53. background-color: rgba(42, 42, 42, 0.5);
  54. }
  55. .container {
  56. margin: 8px 0px;
  57. }
  58. .bg--secondary {
  59. background-color: #8a8a8a;
  60. }
  61. .bg--success {
  62. background-color: #90be6d;
  63. }
  64. .bg--danger {
  65. background-color: #f94144;
  66. }
  67. .bg--warning {
  68. background-color: #f9c74f;
  69. }