aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/styles/workspaces-table.scss
blob: 6d0e7b4f5644ccd2c1df2c289e14d773885fc7a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
@import '../../../styles/config';

.theme__dark .workspace-table {
  .workspace-table__column-info .mdi { color: $dark-theme-gray-lightest; }

  .workspace-table__row {
    border-bottom: 1px solid $dark-theme-gray-darker;

    &:hover { background: $dark-theme-gray-darker; }
    &.workspace-table__row--disabled { color: $dark-theme-gray; }
  }
}

.workspace-table {
  width: 100%;

  .workspace-table__toggle {
    width: 60px;

    .franz-form__field {
      margin-bottom: 0;
    }
  }

  .workspace-table__column-action {
    width: 40px
  }

  .workspace-table__column-info {
    width: 40px;

    .mdi {
      color: $theme-gray-light;
      display: block;
      font-size: 18px;
    }
  }

  .workspace-table__row {
    border-bottom: 1px solid $theme-gray-lightest;

    &:hover {
      cursor: initial;
      background: $theme-gray-lightest;
    }

    &.workspace-table__row--disabled {
      color: $theme-gray-light;
    }
  }

  td { padding: 10px; }
}