aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss
diff options
context:
space:
mode:
authorvempo <vitaliy.emporopulo@amdocs.com>2018-07-24 17:34:04 +0300
committervempo <vitaliy.emporopulo@amdocs.com>2018-07-25 11:39:10 +0300
commita52d50e788792a63e97a9176ab319d53db7a2853 (patch)
treeb1c2222cacf4b8192aea16d1e0315b1f005c5347 /workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss
parent3c2665debb400aef7f0ed9e235698d2ff9f859db (diff)
Replaced old implementation at root
Old project files and directories has been moved under 'deprecated-workflow-designer'. The old project is not built by the CI anymore, but can be still built manually. New modules/directories have been moved up and integrated with the CI system. Change-Id: I1528c792bcbcce9e50bfc294a1328a20e72c91cf Issue-ID: SDC-1559 Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss')
-rw-r--r--workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss149
1 files changed, 149 insertions, 0 deletions
diff --git a/workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss b/workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss
new file mode 100644
index 00000000..45338039
--- /dev/null
+++ b/workflow-designer-ui/src/main/frontend/resources/scss/features/_inputOutput.scss
@@ -0,0 +1,149 @@
+.input-output {
+ @mixin border($top: 1px, $right: 1px, $bottom: 1px, $left: 1px) {
+ border-width: $top $right $bottom $left;
+ border-style: solid;
+ border-color: $light-gray;
+ }
+ padding: 0 100px 20px 100px;
+ flex: 1;
+
+ &__title {
+ height: 110px;
+ line-height: 110px;
+ @include heading-1;
+ @include semi-bold;
+ color: $dark-gray;
+ }
+
+ &__header {
+ display: flex;
+ @include body-1;
+ @include semi-bold;
+ &__right {
+ flex: 1;
+ display: flex;
+ justify-content: flex-end;
+ align-items: center;
+ }
+ }
+
+ &__tab {
+ padding: 12px;
+ @include border(1px, 1px, 0, 1px);
+ background-color: $light-silver;
+ color: $gray;
+ min-width: 128px;
+ text-align: center;
+ cursor: pointer;
+ &--active {
+ color: $blue;
+ padding-top: 9px;
+ border-top: 4px solid $blue;
+ background-color: $white;
+ }
+ & + & {
+ border-left: none;
+ }
+ }
+
+ &__table {
+ &__thead {
+ background-color: $silver;
+ @include body-1;
+ @include semi-bold;
+ }
+ }
+
+ &__tr {
+ display: flex;
+ @include border();
+ &:hover:not(.no-data) {
+ background-color: $light-silver;
+ }
+ & + & {
+ border-top: none;
+ }
+ }
+
+ &__th {
+ flex: 1;
+ padding: 10px;
+ color: $black;
+ display: flex;
+ align-items: center;
+ }
+
+ &__td {
+ flex: 1;
+ display: flex;
+ align-items: center;
+ padding: 25px 30px;
+ &--empty {
+ padding: 20px;
+ color: $dark-gray;
+ @include body-1;
+ @include semi-bold;
+ justify-content: center;
+ }
+
+ .input-output-select {
+ width: 100%;
+ height: 32px;
+ border: solid 1px #d2d2d2;
+ border-radius: 2px;
+ color: #5a5a5a;
+ }
+
+ .sdc-input {
+ width: 100%;
+ position: relative;
+ margin: unset;
+ .sdc-input__label {
+ display: none;
+ }
+ .sdc-input__input {
+ height: 32px;
+ }
+ .sdc-label__error {
+ margin: unset;
+ position: absolute;
+ bottom: -20px;
+ }
+ }
+ }
+
+ &__add {
+ cursor: pointer;
+ @include border(0, 0, 0, 1px);
+ padding-left: 10px;
+ margin-left: 10px;
+ }
+
+ &__search {
+ }
+
+ &__td,
+ &__th {
+ .sdc-checkbox {
+ height: 14px;
+ }
+ &--unflex {
+ flex: unset;
+ justify-content: center;
+ text-align: center;
+ width: 140px;
+ }
+ &--icon {
+ width: 100px;
+ .svg-icon-wrapper {
+ cursor: pointer;
+ &:hover {
+ fill: $blue;
+ }
+ }
+ }
+ & + & {
+ @include border(0, 0, 0, 1px);
+ }
+ }
+}