Projekt

Obecné

Profil

« Předchozí | Další » 

Revize fd0edcc3

Přidáno uživatelem Dominik Chlouba před téměř 4 roky(ů)

Some minor UI bug fixes
refs #8895 @0.1h

Zobrazit rozdíly:

src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/Components/CreateGoalDefinition.razor
17 17
        <select>
18 18
            <option value="" disabled>Zvolte uživatele</option>
19 19
        </select>
20
        <div class="review_description_title">Počet odpracovaných hodin</div>
21
        <input type="number" />
22
        <div class="review_description_title">Finanční základ</div>
23
        <input type="number" />
20 24
    </div>
21 25
    <div class="review_detail_footer">
22 26
        <button>Vytvořit</button>
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/Components/GoalDetailAside.razor
3 3
    <div class="goal_detail_header">
4 4
        <div>
5 5
            <button class="authorize_button accepted">Schválit</button>
6
            <div class="review_button accepted">
6
            <div class="review_button accepted" @onclick="() =>SetReviewId(Guid.NewGuid())">
7 7
                1 <i class="fal fa-trophy"></i>
8 8
            </div>
9
            <div class="review_button accepted" title="zkouška">
9
            <div class="review_button accepted" title="zkouška" @onclick="() =>SetReviewId(Guid.NewGuid())">
10 10
                2 <i class="fal fa-trophy"></i>
11 11
            </div>
12
            <div class="review_button">
12
            <div class="review_button" @onclick="() =>SetReviewId(Guid.NewGuid())">
13 13
                <i class="fal fa-trophy-alt"></i>
14 14
            </div>
15
            <button class="authorize_button">Vytvořit 1. hodnocení</button>
15
            <button class="authorize_button" @onclick="() =>SetReviewId(Guid.NewGuid())">Vytvořit 1. hodnocení</button>
16 16
        </div>
17 17
        <div>
18 18
            <div class="close_button" @onclick="Close">
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/GoalDefinitionDetail.razor
39 39
                <td>150%</td>
40 40
                <td>
41 41
                    <div class="flex">
42
                        <div></div>
43 42
                        <div @onclick='() => SetDetailId(Guid.NewGuid())'>
44 43
                            <i class="fal fa-eye"></i>
45 44
                            Otevřít
46 45
                        </div>
46
                        <div>
47
                            <i class="fal fa-edit"></i>
48
                            Upravit
49
                        </div>
50
                        <div>
51
                            <i class="fal fa-trash"></i>
52
                            Smazat
53
                        </div>
47 54
                    </div>
48 55
                </td>
49 56
            </tr>
......
156 163
    table tr:not(:first-child):hover {
157 164
    background-color: #EDEDED55;
158 165
    }
166
    .flex{
167
    display: grid;
168
    align-items: center;
169
    grid-template-columns: repeat(3, 100px);
170
    justify-content: right;
171
    }
172
    .flex > div:not(:last-child) {
173
    margin-right: 8px;
174
    }
159 175
</BlazorStyled.Styled>
160 176

  
161 177
@code {
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/GoalRanges.razor
36 36
                            <i class="fal fa-edit"></i>
37 37
                            Upravit
38 38
                        </div>
39
                        <div>
40
                            <i class="fal fa-trash"></i>
41
                            Smazat
42
                        </div>
39 43
                    </div>
40 44
                </td>
41 45
            </tr>
......
65 69
    .flex{
66 70
    display: grid;
67 71
    align-items: center;
68
    grid-template-columns: repeat(2, 100px);
72
    grid-template-columns: repeat(3, 100px);
69 73
    justify-content: right;
70 74
    }
71 75
    .flex > div:not(:last-child) {
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/GoalsManagement.razor
42 42
                            <i class="fal fa-edit"></i>
43 43
                            Upravit
44 44
                        </div>
45
                        <div>
46
                            <i class="fal fa-trash"></i>
47
                            Smazat
48
                        </div>
45 49
                    </div>
46 50
                </td>
47 51
            </tr>
......
133 137
    .flex{
134 138
    display: grid;
135 139
    align-items: center;
136
    grid-template-columns: repeat(2, 100px);
140
    grid-template-columns: repeat(3, 100px);
137 141
    justify-content: right;
138 142
    }
139 143
    .flex > div:not(:last-child) {

Také k dispozici: Unified diff