Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6830 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6830 Rev 6837
Línea 56... Línea 56...
56
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
56
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
57
        border-radius: 10px;
57
        border-radius: 10px;
58
    }
58
    }
59
}
59
}
Línea 60... Línea -...
60
 
-
 
61
.sidebar__stats {
-
 
62
    background-color: #fff;
-
 
63
    padding-top: 10px;
-
 
64
    padding-bottom: 10px;
-
 
65
    border: 1px solid lightgray;
-
 
66
    border-top: 0;
-
 
67
 
-
 
68
    &:nth-last-child(2) {
-
 
69
        border-radius: 10px;
-
 
70
        border-top-left-radius: 0;
-
 
71
        border-top-right-radius: 0;
-
 
72
    }
-
 
73
}
-
 
74
 
-
 
75
.sidebar__stat {
-
 
76
    cursor: pointer;
-
 
77
    padding: 10px;
-
 
78
    display: flex;
-
 
79
    justify-content: space-between;
-
 
80
    width: 100%;
-
 
81
 
-
 
82
    &:hover {
-
 
83
        background-color: rgba(0, 0, 0, 0.08);
-
 
84
    }
-
 
85
 
-
 
86
    &>span {
-
 
87
        font-size: 0.9rem;
-
 
88
        font-weight: 600;
-
 
89
        color: gray;
-
 
90
    }
-
 
91
}
-
 
92
 
-
 
93
.sidebar__stat-number {
-
 
94
    font-weight: bold !important;
-
 
95
    color: #0a66c2 !important;
-
 
96
}
-
 
97
 
-
 
98
.sidebar__recent-item__container {
-
 
99
    display: flex;
-
 
100
    flex-direction: column;
-
 
101
    width: 100%;
-
 
102
}
-
 
103
 
-
 
104
.sidebar__recent-item {
-
 
105
    cursor: pointer;
-
 
106
    display: flex;
-
 
107
    align-items: center;
-
 
108
    justify-content: space-between;
-
 
109
    width: 100%;
-
 
110
    padding: 0 10px;
-
 
111
}
-
 
112
 
-
 
113
.sidebar__recent-item>p {
-
 
114
    font-size: 0.9rem;
-
 
115
    font-weight: 600;
-
 
116
    color: gray;
-
 
117
}
-
 
118
 
-
 
119
.sidebar__recent-icon {
-
 
120
    background-color: #0000;
-
 
121
    border: none;
-
 
122
    border-radius: 50%;
-
 
123
    height: 2rem;
-
 
124
    width: 2rem;
-
 
125
    display: grid;
-
 
126
    place-items: center;
-
 
127
    padding: 0;
-
 
128
    cursor: pointer;
-
 
129
    transition: all 0.2s;
-
 
130
}
-
 
131
 
-
 
132
.sidebar__recent-item:hover .sidebar__recent-icon {
-
 
133
    background-color: rgba(0, 0, 0, 0.08);
-
 
134
}
-
 
135
 
60
 
136
.sidebar__options {
61
.sidebar__options {
137
    display: none;
62
    display: none;
Línea 138... Línea 63...
138
}
63
}
Línea 156... Línea 81...
156
 
81
 
157
.sideabar__footer>button:hover {
82
.sideabar__footer>button:hover {
158
    background-color: rgba(0, 0, 0, 0.08);
83
    background-color: rgba(0, 0, 0, 0.08);
Línea 159... Línea -...
159
}
-
 
160
 
-
 
161
.helper__list {
-
 
162
    display: flex;
-
 
163
    flex-direction: column;
-
 
164
    transition: all 0.2s ease-in-out;
-
 
165
    overflow: hidden;
-
 
166
    gap: 0.5rem;
-
 
167
 
-
 
168
    &.hide {
-
 
169
        height: 0;
-
 
170
    }
-
 
171
 
-
 
172
    &.show {
-
 
173
        height: auto;
-
 
174
    }
-
 
175
 
-
 
176
    .helper__list-item {
-
 
177
        padding: 5px 10px;
-
 
178
        display: flex;
-
 
179
        align-items: center;
-
 
180
        gap: 0.5rem;
-
 
181
 
-
 
182
        &:hover {
-
 
183
            background-color: rgba(0, 0, 0, 0.08);
-
 
184
        }
-
 
185
 
-
 
186
        &>span {
-
 
187
            font-size: 0.9rem;
-
 
188
            font-weight: 600;
-
 
189
            color: gray;
-
 
190
            text-align: left;
-
 
191
        }
-
 
Línea 192... Línea 84...
192
    }
84
}
193
}
85
 
194
 
86
 
195
@media (min-width: 576px) {
87
@media (min-width: 576px) {