blob: cca96321ec83e829e56674c7d7141bea5f2b517c (
plain)
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
  | 
// Place all the styles related to the routes controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
@import "common";
#workspace.referentials.show
{
    .api_key:after { 
        @include after_div_for_object;  
    }
    .api_keys {
        margin-top: 20px;
    }
    .api_keys:after {
        @include content_to_clear;
    }
    
    .api_key {
        @include div_for_object;
        /* to create multi-column index */
        width: 350px;
        padding-right: 10px;
        
        .name {
            line-height: 16px;
            float: left;
        }
        
    }
}
  |