hide search function on mobile to save space in breadcrumb bar
This commit is contained in:
Родитель
9cf3d930bc
Коммит
e0d7de6c20
|
@ -4,6 +4,7 @@
|
|||
if (\OCP\User::isLoggedIn()) {
|
||||
OCP\Util::addStyle('files_texteditor', 'DroidSansMono/stylesheet');
|
||||
OCP\Util::addStyle('files_texteditor', 'style');
|
||||
OCP\Util::addStyle('files_texteditor', 'mobile');
|
||||
OCP\Util::addscript('files_texteditor', 'editor');
|
||||
OCP\Util::addscript('files_texteditor', 'vendor/ace/src-noconflict/ace');
|
||||
}
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
@media only screen and (max-width: 768px) {
|
||||
|
||||
|
||||
/* hide search function on mobile to prevent wrap of elements */
|
||||
#editorsearchval,
|
||||
#editor_save+label {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
}
|
Загрузка…
Ссылка в новой задаче