summaryrefslogtreecommitdiffstats
path: root/css/oc8.css
blob: 27b75dbef4ae8d7c87f4c99c9a911e6dec96f296 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/**
 * App navigation utils, buttons and counters for drop down menu
 */
.app-navigation-entry-utils {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
}

    .app-navigation-entry-utils ul {
        float: right;
        display: block !important;
    }


    .app-navigation-entry-utils li {
        float: left;
        width: 44px !important;
        height: 44px;
        line-height: 44px;
        display: none;
    }

    .active > .app-navigation-entry-utils li {
        display: inline-block;
    }

    .app-navigation-entry-utils button {
        height: 38px;
        width: 38px;
        line-height: 38px;
        float: left;
    }

    .app-navigation-entry-utils-menu-button {
        border: 0;
        opacity: .7;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url('../img/actions/more.svg');
    }

    .app-navigation-entry-utils-menu-button:hover,
    .app-navigation-entry-utils-menu-button:focus {
        background-color: transparent;
        opacity: 1;
    }

    .app-navigation-entry-utils-counter {
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: right;
        font-size: 9pt;
        width: 38px;
        line-height: 44px;
        padding: 0 10px;
    }

.app-navigation-entry-utils ul,
.app-navigation-entry-options ul {
    list-style-type: none;
}

.app-navigation-entry-options {
    display: none;
    position: absolute;
    background-color: #eee;
    color: #333;
    border-radius: 3px;
    z-index: 110;
    margin: -5px 10px;
    right: 0;
    border: 1px solid #bbb;
    -webkit-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
    -moz-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
    -ms-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
    -o-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
    filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
}

/* miraculous border arrow stuff */
.app-navigation-entry-options:after, .app-navigation-entry-options:before {
    bottom: 100%;
    right: 5px; /* change this to adjust the arrow position */
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.app-navigation-entry-options:after {
    border-color: rgba(238, 238, 238, 0);
    border-bottom-color: #eee;
    border-width: 10px;
    margin-left: -10px;
}
.app-navigation-entry-options:before {
    border-color: rgba(187, 187, 187, 0);
    border-bottom-color: #bbb;
    border-width: 11px;
    margin-left: -11px;
}

.app-navigation-entry-options.app-navigation-entry-options-open {
    display: block;
}

/* list of options for an entry */
.app-navigation-entry-options ul {
    display: block !important;
}

.app-navigation-entry-options li {
    float: left;
    width: 38px !important;
}

.app-navigation-entry-options li button {
    float: right;
    width: 36px !important;
    height: 36px;
    line-height: 36px;
    border: 0;
    opacity: .7;
    background-color: transparent;
}

.app-navigation-entry-options li button:hover,
.app-navigation-entry-options li button:focus {
    opacity: 1;
    background-color: transparent;
}