Fix flex direction in results path of drive search

This commit is contained in:
ClemDee 2019-06-21 17:26:32 +02:00
parent 9b8fed55e9
commit d34d517e27

View File

@ -513,12 +513,18 @@
} }
.cp-app-drive-search-path { .cp-app-drive-search-path {
font-style: italic; font-style: italic;
display: flex; .cp-app-drive-path-inner {
flex-flow: row-reverse; display: flex;
justify-content: right; flex-flow: row-reverse wrap-reverse;
.cp-app-drive-path-element { justify-content: flex-end;
display: inline-block; .cp-app-drive-path-element {
margin-right: 5px; flex-shrink: 0;
display: inline-block;
margin-right: 5px;
white-space: normal;
word-wrap: break-word;
max-width: 100%;
}
} }
} }
.cp-app-drive-search-title { .cp-app-drive-search-title {