9c101e8ce3b7672ef4d5b25ab0bee5d216c7ebbb
[sdc.git] /
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2022 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 @import "../../../../../assets/styles/sprite-old";
23 @import "../../../../../assets/styles/mixins_old";
24
25 .workspace-properties {
26
27     width: 93%;
28     display: inline-block;
29
30     #left-top-bar {
31         float: left;
32         width: 186px;
33
34         ::-webkit-input-placeholder {
35             font-style: italic;
36         }
37
38         :-moz-placeholder {
39             font-style: italic;
40         }
41
42         ::-moz-placeholder {
43             font-style: italic;
44         }
45
46         :-ms-input-placeholder {
47             font-style: italic;
48         }
49
50         #properties-count {
51             font-weight: bold;
52             float: left;
53         }
54
55         #search-by-name {
56             -webkit-border-radius: 2px;
57             -moz-border-radius: 2px;
58             border-radius: 2px;
59             width: 270px;
60             height: 32px;
61             line-height: 32px;
62             border: 1px solid @main_color_o;
63             text-indent: 10px;
64         }
65
66         .search-button {
67             .hand;
68             cursor: pointer;
69             float: right;
70             position: relative;
71             top: -22px;
72             right: -80px;
73         }
74     }
75
76     .delete-col-header {
77         .sprite();
78         .sprite.e-sdc-small-icon-delete();
79     }
80
81     .table {
82         height: 100%;
83         min-height: 500px;
84         margin-bottom: 0;
85     }
86
87     .data-row {
88         .table-delete-btn {
89             display: none !important;
90         }
91
92         &:hover {
93             .table-delete-btn {
94                 display: inline-block !important;
95             }
96         }
97     }
98
99     .table-container-flex {
100         margin-top: 0;
101         overflow: scroll;
102         &::-webkit-scrollbar-track {
103             border: 0;
104         }
105
106         .text {
107             overflow: hidden;
108             text-overflow: ellipsis;
109             display: inline-block;
110             white-space: nowrap;
111         }
112
113         .flex-item:nth-child(1) {
114             flex-grow: 15;
115
116             a {
117                 .hand
118             }
119         }
120
121         .flex-item:nth-child(2) {
122             flex-grow: 6;
123         }
124
125         .flex-item:nth-child(3) {
126             flex-grow: 6;
127         }
128
129         .flex-item:nth-child(4) {
130             flex-grow: 20;
131             white-space: normal;
132         }
133
134         .flex-item:nth-child(5) {
135             flex-grow: 3;
136             padding-top: 10px;
137         }
138
139     }
140
141 }