diff options
author | Gary Kim <gary@garykim.dev> | 2019-11-03 16:22:59 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2019-11-05 20:39:07 +0800 |
commit | 0efa78d1e207e3b345fd435494f892974e441f61 (patch) | |
tree | b17412f47c2e5ddf8dc57730ef5cd1833b614bd9 /core/src/jquery | |
parent | 827a3c545afbffead72a89931ab1a4a07ce3a3d2 (diff) | |
download | nextcloud-server-0efa78d1e207e3b345fd435494f892974e441f61.tar.gz nextcloud-server-0efa78d1e207e3b345fd435494f892974e441f61.zip |
Prompt on destructive user actions
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'core/src/jquery')
-rw-r--r-- | core/src/jquery/css/jquery-ui-fixes.scss | 5 | ||||
-rw-r--r-- | core/src/jquery/css/jquery.ocdialog.scss | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/core/src/jquery/css/jquery-ui-fixes.scss b/core/src/jquery/css/jquery-ui-fixes.scss index b1f7afc1883..34243062ba6 100644 --- a/core/src/jquery/css/jquery-ui-fixes.scss +++ b/core/src/jquery/css/jquery-ui-fixes.scss @@ -115,6 +115,9 @@ .ui-state-error-text .ui-icon { background-image: url('images/ui-icons_ffd27a_256x240.png'); } +.ui-icon.ui-icon-none { + display: none; +} /* Misc visuals ----------------------------------*/ @@ -230,4 +233,4 @@ .ui-draggable-handle, .ui-selectable { touch-action: pan-y; -}
\ No newline at end of file +} diff --git a/core/src/jquery/css/jquery.ocdialog.scss b/core/src/jquery/css/jquery.ocdialog.scss index 7372f308727..89653ae181a 100644 --- a/core/src/jquery/css/jquery.ocdialog.scss +++ b/core/src/jquery/css/jquery.ocdialog.scss @@ -74,6 +74,7 @@ .oc-dialog-content { width: 100%; + max-width: 550px; } .oc-dialog.password-confirmation { |