Blame view

node_modules/bootstrap-vue/src/components/time/_time.scss 688 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
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
// BTime custom SCSS

.b-time {
  min-width: 150px;

  &[aria-disabled="true"] output,
  &[aria-readonly="true"] output,
  output.disabled {
    background-color: $input-disabled-bg;
    opacity: 1;
  }

  &[aria-disabled="true"] output {
    pointer-events: none;
  }

  @at-root {
    // Prevent the spinbuttons from reversing order in RTL mode
    // as time is always read LTR
    [dir="rtl"] & > .d-flex:not(.flex-column) {
      flex-direction: row-reverse;
    }
  }

  .b-time-header {
    margin-bottom: 0.5rem;

    output {
      padding: 0.25rem;
      font-size: 80%;
    }
  }

  .b-time-footer {
    margin-top: 0.5rem;
  }

  .b-time-ampm {
    margin-left: 0.5rem;
  }
}