Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@import 'variables';
2
 
3
.h5peditor {
4
  .h5p-editing-image-button {
5
    background: linear-gradient(to bottom, #fff 0, #f2f2f2 100%);
6
    font-size: $font-size-small;
7
    color: $black;
8
    line-height: $form-item-height-small;
9
    padding-right: $padding;
10
    margin-right: 0.5em;
11
    height: 30px;
12
    padding-left: 0;
13
    font-weight: normal;
14
 
15
    &:hover:not([disabled]) {
16
      background: linear-gradient(to bottom, #fff 0, #d0d0d1 100%);
17
      border-color: #999;
18
    }
19
  }
20
 
21
  .h5p-editing-image-button:before {
22
    font-family: $icon-font-family;
23
    content: "\e900";
24
    color: #666;
25
    padding-right: 0.3em;
26
    padding-left: 0.45em;
27
    vertical-align: middle;
28
    font-size: 1.5em;
29
    line-height: 0.9;
30
  }
31
 
32
  .h5p-editing-image-button.loading:before {
33
    content: "\e901";
34
  }
35
 
36
  .h5p-editing-image-button.hidden,
37
  .h5p-copyright-button.hidden {
38
    display: none !important;
39
  }
40
 
41
  .ui-dialog .h5p-editing-image-button,
42
  .ui-dialog .h5p-copyright-button {
43
    padding-left: 0.5em;
44
  }
45
}