Project

General

Profile

1
/* Search */
2
.dashboard {
3
  @import "common-assets/library-css/library";
4

    
5
  /* Animation*/
6
  [class*=uk-animation-] {
7
    animation-fill-mode: none !important;
8
  }
9

    
10
  /* Link */
11
  .uk-link:hover {
12
    color: var(--portal-main-color);
13
    text-decoration: none;
14
  }
15

    
16
  /* Paging */
17
  .uk-pagination > * > * {
18
    display: block;
19
    color: #666;
20
    box-sizing: border-box;
21
    min-width: 0;
22
    padding: 0;
23
    background: 0 0;
24
    line-height: 16px;
25
    text-align: center;
26
    transition: .1s ease-in-out;
27
    transition-property: color, background-color, border-color, box-shadow;
28
    font-size: 16px;
29
    letter-spacing: 0;
30
    border: 8px solid transparent;
31
    border-radius: 5px;
32
    height: auto;
33
  }
34

    
35
  .uk-pagination > * > :focus, .uk-pagination > * > :hover {
36
    color: #4687e6;
37
    text-decoration: none;
38
    background-color: transparent !important;
39
    border-color: transparent;
40
  }
41

    
42
  /* Input */
43
  .uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
44
    background-color: var(--portal-main-color);
45
  }
46

    
47
  /* Alerts */
48
  .uk-alert {
49
    position: relative;
50
    margin-bottom: 20px;
51
    padding: 15px 29px 15px 15px;
52
    background: #fff;
53
    color: #666;
54
    border: 1px solid #ededed;
55
  }
56

    
57
  .uk-alert.uk-grid {
58
    display: flex;
59
  }
60

    
61
  .uk-alert-primary {
62
    background: #fff;
63
    color: #222080;
64
    border-color: #222080;
65
  }
66
}
(10-10/11)