File size: 2,218 Bytes
9f79da5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8c6054f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
mat-dialog-content {
  min-width: 700px;
  max-width: 900px;
  max-height: 70vh;
  padding: 0;
}

.tab-content {
  padding: 24px;
}

.full-width {
  width: 100%;
  margin-bottom: 16px;
}

h4 {
  margin: 24px 0 16px 0;
  color: rgba(0, 0, 0, 0.87);
}

mat-divider {
  margin: 24px 0;
}

// Examples Tab
.examples-section {
  .examples-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;

    h4 {
      margin: 0;
    }

    .locale-selector {
      width: 150px;
    }
  }

  .add-example {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;

    .example-input {
      flex: 1;
    }
  }

  .examples-list {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0;

    mat-list-item {
      border-bottom: 1px solid #f5f5f5;

      &:last-child {
        border-bottom: none;
      }

      &:hover {
        background-color: #f5f5f5;
      }
    }
  }
}

// Parameters Tab
.parameters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;

  h4 {
    margin: 0;
  }
}

.parameters-list {
  mat-expansion-panel {
    margin-bottom: 8px;

    mat-chip-listbox {
      margin-left: 16px;

      mat-chip {
        font-size: 11px;
        min-height: 20px;
        padding: 2px 8px;
      }
    }
  }

  .parameter-content {
    padding: 16px;

    .parameter-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    mat-checkbox {
      margin-bottom: 16px;
    }

    .parameter-actions {
      display: flex;
      align-items: center;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #e0e0e0;

      .spacer {
        flex: 1;
      }
    }
  }
}

.empty-state {
  text-align: center;
  padding: 40px 20px;

  mat-icon {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #e0e0e0;
    margin-bottom: 16px;
  }

  p {
    color: #666;
    margin: 0;
  }
}

mat-dialog-actions {
  padding: 16px 24px;
  margin: 0;
}