summaryrefslogtreecommitdiff
path: root/addons/project/static/src/css/project.css
blob: a88d7d1b7b7f05de5b8ffa386614550e67c4b3a6 (plain)
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

.oe_kanban_project_avatars img {
    width: 30px;
    border-radius: 2px;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.oe_form_gantt_avatars:after {
  font-family: "mnmliconsRegular" !important;
  font-size: 21px;
  font-weight: 300 !important;
  content: "y";
  top: 3px;
  position: relative;
}

.openerp .oe_kanban_view .oe_kanban_project {
  width: 250px;
  min-height: 160px !important;
  cursor: default;
}

.openerp .oe_percent strong:after {
  content: "%";
}

.openerp .oe_margin_top_8 {
  margin-top: 8px;
}
.openerp .oe_kanban_project .oe_kanban_project_list .col-lg-6 a{
  margin-left: 5px;
}

/* Kanban status as label in project stage form view */
.openerp label.oe_project_kanban_legend {
  min-width: inherit !important;
  margin-top: 6px;
  margin-right: 8px;
}

.o_form_project_tasks.o_form_editable .oe_title {
  max-width: initial;
}

.o_form_project_tasks.o_form_editable .oe_title .o_task_name {
  /*
   * should be (coming from addons/web/static/src/scss/form_view.scss):
   * max-width: map-get($container-max-widths, md) - (2 * $o-horizontal-padding);
   */
  max-width: 688px;
  margin-right: auto;
}

.o_kanban_project_tasks .badge {
  background: inherit;
  color: inherit;
  border: 1px solid var(--success);
}

.o_kanban_project_tasks .badge-warning {
  border-color: var(--warning);
}

.o_kanban_project_tasks .badge-danger {
  border-color: var(--danger);
}

.o_form_project_tasks .ribbon:not(.o_invisible_modifier) + div > h1 > div[name="kanban_state"] {
  margin-right: 150px;
  padding-left: 1rem;
}

.o_form_project_recurrence_message *:last-child {
  margin-bottom: 0;
}