aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.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/_catalog.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/_catalog.scss')
-rw-r--r--workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.scss95
1 files changed, 95 insertions, 0 deletions
diff --git a/workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.scss b/workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.scss
new file mode 100644
index 00000000..debb8b81
--- /dev/null
+++ b/workflow-designer-ui/src/main/frontend/resources/scss/features/_catalog.scss
@@ -0,0 +1,95 @@
+.wf-catalog {
+ background-color: $light-silver;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ .header {
+ align-items: center;
+ display: flex;
+ justify-content: flex-end;
+ background-color: $silver;
+ margin-bottom: 2px;
+ @include box-shadow(0px 1px 3px 0 rgba(0, 0, 0, 0.2));
+ padding: 8px 60px 0 60px;
+ &__search {
+ height: 25px;
+ }
+ }
+ .main {
+ flex: 1;
+ &__header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 25px 60px;
+ &__total {
+ @include body-1;
+ @include semi-bold;
+ color: $dark-gray;
+ }
+ &__order {
+ display: flex;
+ &__label {
+ @include body-1;
+ @include semi-bold;
+ color: $dark-gray;
+ }
+ &__alphabetical {
+ cursor: pointer;
+ display: flex;
+ &__label {
+ margin-left: 5px;
+ @include body-1;
+ color: $blue;
+ }
+ &__icon {
+ display: flex;
+ align-items: center;
+ margin-left: 5px;
+ .svg-icon {
+ width: 9px;
+ height: 9px;
+ }
+ &--flip {
+ transform: rotate(180deg);
+ }
+ }
+ }
+ }
+ }
+ &__content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, 204px);
+ grid-gap: 20px;
+ padding: 0 60px;
+ }
+ .add-workflow {
+ border: 2px dashed #a8b3b9;
+ width: 204px;
+ height: 204px;
+ padding: 10px;
+ box-sizing: border-box;
+ cursor: pointer;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ color: $gray;
+ &__icon {
+ color: $gray;
+ fill: $gray;
+ }
+ &__label {
+ text-transform: uppercase;
+ @include body-1;
+ }
+ &:hover {
+ color: $blue;
+ .svg-icon-wrapper {
+ color: $blue;
+ fill: $blue;
+ }
+ }
+ }
+ }
+}