aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-02-12 16:58:01 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-02-12 16:58:03 +0100
commiteb7c7a517902eae425b05d1ca9cb7f99f76ee71f (patch)
tree8fe379865fe1331616e8625ef4f6f488f1431536 /client/src/sass
parent2779f29a66df9ad6fb162cfc9563e98fd137e223 (diff)
downloadPeerTube-eb7c7a517902eae425b05d1ca9cb7f99f76ee71f.tar.gz
PeerTube-eb7c7a517902eae425b05d1ca9cb7f99f76ee71f.tar.zst
PeerTube-eb7c7a517902eae425b05d1ca9cb7f99f76ee71f.zip
Fix user dropdown menu with long texts
closes #2480
Diffstat (limited to 'client/src/sass')
-rw-r--r--client/src/sass/application.scss9
-rw-r--r--client/src/sass/bootstrap.scss4
2 files changed, 13 insertions, 0 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss
index fa2452231..995cc6025 100644
--- a/client/src/sass/application.scss
+++ b/client/src/sass/application.scss
@@ -220,6 +220,15 @@ table {
220 font-weight: $font-semibold; 220 font-weight: $font-semibold;
221} 221}
222 222
223.dropdown-item {
224 @include dropdown-with-icon-item;
225
226 my-global-icon {
227 width: 22px;
228 height: 22px;
229 }
230}
231
223@media screen and (max-width: 1600px) { 232@media screen and (max-width: 1600px) {
224 .main-col { 233 .main-col {
225 &.expanded { 234 &.expanded {
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss
index 330882fe4..2aca8c380 100644
--- a/client/src/sass/bootstrap.scss
+++ b/client/src/sass/bootstrap.scss
@@ -18,6 +18,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
18 } 18 }
19} 19}
20 20
21.dropdown {
22 z-index: 10001 !important;
23}
24
21.dropdown-menu { 25.dropdown-menu {
22 border-radius: 3px; 26 border-radius: 3px;
23 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); 27 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);