From db3590e7ae41707c0eef58d9a4c1c2ede36687f6 Mon Sep 17 00:00:00 2001 From: lvuch Date: Mon, 12 Oct 2020 13:10:55 -0700 Subject: [PATCH 1/8] 1556 --- assets/styles/global/_tooltip.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/styles/global/_tooltip.scss b/assets/styles/global/_tooltip.scss index eb6c27190f..e8467cf3fc 100644 --- a/assets/styles/global/_tooltip.scss +++ b/assets/styles/global/_tooltip.scss @@ -5,6 +5,7 @@ display: block !important; z-index: z-index('tooltip'); + max-width: 450px; .tooltip-inner { background: var(--tooltip-bg); From 9abf27e3b65edb10795ef99706f771be3068aec6 Mon Sep 17 00:00:00 2001 From: lvuch Date: Tue, 13 Oct 2020 12:00:01 -0700 Subject: [PATCH 2/8] spacing tabs --- assets/styles/fonts/_icons.scss | 24 ++++++++++-------------- components/form/KeyValue.vue | 2 +- components/form/WorkloadPorts.vue | 5 +---- components/nav/ClusterSwitcher.vue | 3 ++- components/nav/NamespaceFilter.vue | 4 ++++ 5 files changed, 18 insertions(+), 20 deletions(-) diff --git a/assets/styles/fonts/_icons.scss b/assets/styles/fonts/_icons.scss index 64231dcd08..823e5588ae 100644 --- a/assets/styles/fonts/_icons.scss +++ b/assets/styles/fonts/_icons.scss @@ -7,29 +7,25 @@ $icomoon-font-family: 'icons' !global; // Animated Icons // -------------------------- .icon-spin { - -webkit-animation: icon-spin 2s infinite steps(8); - animation: icon-spin 2s infinite steps(8); + -webkit-animation: icon-spin 5000ms infinite linear; + animation: icon-spin 5000ms infinite linear; } @-webkit-keyframes icon-spin { - 0% { - -webkit-transform: rotateZ(0deg); - transform: rotateZ(0deg); + from { + transform:rotate(0deg); } - 100% { - -webkit-transform: rotateZ(360deg); - transform: rotateZ(360deg); + to { + transform:rotate(360deg); } } @keyframes icon-spin { - 0% { - -webkit-transform: rotateZ(0deg); - transform: rotateZ(0deg); + from { + transform:rotate(0deg); } - 100% { - -webkit-transform: rotateZ(360deg); - transform: rotateZ(360deg); + to { + transform:rotate(360deg); } } diff --git a/components/form/KeyValue.vue b/components/form/KeyValue.vue index b52fdd1ca0..04665584ff 100644 --- a/components/form/KeyValue.vue +++ b/components/form/KeyValue.vue @@ -463,7 +463,7 @@ export default { -