blob: a7afd01cc515942a7d55121a00287a08bb79e395 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001
2.license-agreement-list-editor {
3
4 .list-editor-view-list {
5 .list-editor-item-view {
6 min-height: 110px;
7 height: 110px;
8 }
9 .list-editor-item-view-field {
10 .list-editor-item-view-field-tight {
11 vertical-align: top;
12 display: inline-block;
13 &:first-child {
14 @include ellipsis;
15 margin-right: 95px;
16 width: 20%;
17 overflow-wrap: break-word;
18 }
19 }
20 .feature-groups-count, .contract-number, .type {
21 color: $light-green;
22 }
23 .feature-groups-count {
24 @extend .heading-1;
25 padding-top: 2px;
26 text-align: center;
27 }
28 .contract-number {
29 margin-bottom: 8px;
30 }
31 }
32 }
33}
34
35.license-agreement-modal {
36 .modal-body {
37 padding: 0;
38 }
39 .license-agreement-form {
40 .button-tab{
41 @extend .body-1-medium;
42 color: $dark-gray;
43 padding: 6px;
44 border: 0;
45 background-color: $white;
46 box-shadow: none;
47 &:first-child {
48 margin-right: 28px;
49 }
50 &.active, &:hover {
51 color: $text-black;
52 border-bottom: 2px solid $blue;
53 }
54 }
55 .no-items-msg {
56 margin-top: 55px;
57 color: $dark-gray;
58 }
59 .tab-content {
60 padding: 50px;
61 .list-editor-item-view-content {
62 white-space: nowrap;
63 overflow: hidden;
64 > div {
65 overflow: hidden;
66 text-overflow: ellipsis;
67 &:not(:last-of-type) {
68 margin-right: 24px;
69 }
70 }
71 }
72 }
73 .license-agreement-form-row {
74 display: flex;
75 justify-content: space-between;
76 .license-agreement-form-col {
77 flex: 0 1 45%;
78 }
79 .validation-input-wrapper {
80 flex: 0 1 45%;
81 .form-group {
82 textarea {
83 height: 100px;
84 }
85 }
86 }
87 }
88 .validation-buttons {
89 padding: 20px 50px;
90 }
91 }
92}