diff --git a/editor/sass/jquery.scss b/editor/sass/jquery.scss index 62704bf9f..935ed4168 100644 --- a/editor/sass/jquery.scss +++ b/editor/sass/jquery.scss @@ -1,5 +1,5 @@ /** - * Copyright 2015 IBM Corp. + * Copyright 2015, 2016 IBM Corp. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -76,3 +76,23 @@ .ui-dialog .ui-dialog-buttonpane { padding: .3em 1em .5em 1em; } + +.ui-spinner { + border-radius: 4px; + padding: 0; + border: 1px solid $form-input-border-color; +} +.ui-spinner input { + margin: 0 17px 0 0; + padding: 6px; + border: none; + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; + + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + &:focus { + outline: none; + } +} diff --git a/nodes/core/core/20-inject.html b/nodes/core/core/20-inject.html index 10fa9965f..80fbf4c85 100644 --- a/nodes/core/core/20-inject.html +++ b/nodes/core/core/20-inject.html @@ -142,13 +142,7 @@ .inject-time-times { width: 90px; } - .inject-time-row > .ui-spinner { - height: 28px; - margin: 3px 0; - border-color: rgb(204, 204, 204); - } #inject-time-time { - margin-top: 3px; width: 75px; } .inject-time-count { diff --git a/nodes/core/core/80-function.html b/nodes/core/core/80-function.html index 8d825a445..6d6b264e8 100644 --- a/nodes/core/core/80-function.html +++ b/nodes/core/core/80-function.html @@ -1,5 +1,5 @@