[PATCH] [Wok 0/2] Loading mask position and "progress" mouse cursor

From: Samuel Guimarães <sguimaraes943@gmail.com> This patchset contains "Fixes loading message position inside panel-groups" v2 (rebased) and the CSS class to change mouse cursor when tasks are in progress (still requires individual patches for each plugin). Samuel Guimarães (2): Fixes loading message position inside panel-groups Added cursor for tasks in progress ui/css/src/wok.scss | 20 ++++++++++++++++++++ ui/css/wok.css | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) -- 1.9.3

From: Samuel Guimarães <sguimaraes943@gmail.com> Signed-off-by: Samuel Guimarães <sguimaraes943@gmail.com> --- ui/css/src/wok.scss | 4 ++++ ui/css/wok.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ui/css/src/wok.scss b/ui/css/src/wok.scss index 0672cdb..1765f4f 100755 --- a/ui/css/src/wok.scss +++ b/ui/css/src/wok.scss @@ -117,6 +117,10 @@ body { position: relative; } +.panel-collapse.collapse { + position: relative; +} + // Override pagination .pagination { diff --git a/ui/css/wok.css b/ui/css/wok.css index 6da0aa8..79d1bed 100644 --- a/ui/css/wok.css +++ b/ui/css/wok.css @@ -117,6 +117,10 @@ body { position: relative; } +.panel-collapse.collapse { + position: relative; +} + .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, -- 1.9.3

From: Samuel Guimarães <sguimaraes943@gmail.com> Signed-off-by: Samuel Guimarães <sguimaraes943@gmail.com> --- ui/css/src/wok.scss | 16 ++++++++++++++++ ui/css/wok.css | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/ui/css/src/wok.scss b/ui/css/src/wok.scss index 1765f4f..454c3d8 100755 --- a/ui/css/src/wok.scss +++ b/ui/css/src/wok.scss @@ -34,6 +34,22 @@ body { margin-bottom: 60px; } +html.in-progress, +html.in-progress * { + cursor:progress; +} + +html.in-progress a, +html.in-progress button { + cursor: pointer; +} + +html.in-progress [disabled], + html.in-progress button[disabled], + html.in-progress .disabled { + cursor: not-allowed; +} + .footer { position: absolute; bottom: 0; diff --git a/ui/css/wok.css b/ui/css/wok.css index 79d1bed..5d8905f 100644 --- a/ui/css/wok.css +++ b/ui/css/wok.css @@ -39,6 +39,22 @@ body { margin-bottom: 60px; } +html.in-progress, +html.in-progress * { + cursor: progress; +} + +html.in-progress a, +html.in-progress button { + cursor: pointer; +} + +html.in-progress [disabled], +html.in-progress button[disabled], +html.in-progress .disabled { + cursor: not-allowed; +} + .footer { position: absolute; bottom: 0; -- 1.9.3

Is this patchset part of the solution for https://github.com/kimchi-project/kimchi/issues/966 ? On 07/19/2016 10:32 AM, sguimaraes943@gmail.com wrote:
From: Samuel Guimarães <sguimaraes943@gmail.com>
This patchset contains "Fixes loading message position inside panel-groups" v2 (rebased) and the CSS class to change mouse cursor when tasks are in progress (still requires individual patches for each plugin).
Samuel Guimarães (2): Fixes loading message position inside panel-groups Added cursor for tasks in progress
ui/css/src/wok.scss | 20 ++++++++++++++++++++ ui/css/wok.css | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+)
participants (2)
-
Aline Manera
-
sguimaraes943@gmail.com