Skip to content
Snippets Groups Projects
Verified Commit b29fd35c authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

fix alignment of external/internal indicator on mobile

parent 3e88baa0
No related branches found
No related tags found
2 merge requests!357[release] Regular merge of develop,!355fix alignment of external/internal indicator on mobile
Pipeline #52896 passed with warnings
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
align-content: flex-start; align-content: flex-start;
padding-right: 10px; padding-right: 10px;
border: solid 1px rgba(0,0,0,0); border: solid 1px rgba(0,0,0,0);
border-right: solid 2px rgba(240, 240, 240, 0.7); border-right: solid 2px rgba(240, 240, 240, 0.7);
} }
@media (max-width: 1080px) { @media (max-width: 1080px) {
.container > .left-inner-container { .container > .left-inner-container {
...@@ -241,19 +241,19 @@ ...@@ -241,19 +241,19 @@
color: #ccc; color: #ccc;
} }
.right-inner-container.droppable > .card-pinned.card-grayed.card-pulsate { .right-inner-container.droppable > .card-pinned.card-grayed.card-pulsate {
animation-name: stretch; animation-name: stretch;
animation-duration: 0.6s; animation-duration: 0.6s;
animation-direction: alternate; animation-direction: alternate;
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-play-state: running; animation-play-state: running;
} }
@keyframes stretch { @keyframes stretch {
0% { 0% {
transform: scale(.90); transform: scale(.90);
} }
100% { 100% {
transform: scale(1.1); transform: scale(1.1);
} }
} }
/* ==================================================== */ /* ==================================================== */
/* Search bar */ /* Search bar */
...@@ -305,15 +305,15 @@ div.search-bar { ...@@ -305,15 +305,15 @@ div.search-bar {
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
} }
@media (max-width: 1080px) { @media (max-width: 1080px) {
.indicator { .indicator {
top: 128px; top: 128px;
right: 72px; right: 72px;
} }
} }
@media (max-width: 650px) { @media (max-width: 700px) {
.indicator { .indicator {
top: 50px; top: 10px;
right: 50px; right: 50px;
} }
} }
...@@ -330,7 +330,7 @@ div.search-bar { ...@@ -330,7 +330,7 @@ div.search-bar {
/* Tooltip */ /* Tooltip */
/* ==================================================== */ /* ==================================================== */
.tooltip .tooltip-text { .tooltip .tooltip-text {
visibility: hidden; visibility: hidden;
width: 400px; width: 400px;
right: 120%; right: 120%;
top: -43px; top: -43px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment