Blame view

public/bpmnjs/app.css 1.66 KB
809d9ffa   wuxw   流程设计页面组件没法和vue兼容只...
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
  * {
    box-sizing: border-box;
  }
  body,
  html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    height: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
  }
  a:link {
    text-decoration: none;
  }
  .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }
  .content > .message {
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    font-size: 16px;
    color: #111;
  }
  .content > .message .note {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
  }
  .content > .message.error .details {
    max-width: 500px;
    font-size: 12px;
    margin: 20px auto;
    text-align: left;
    color: #BD2828;
  }
  .content > .message.error pre {
    border: solid 1px #BD2828;
    background: #fefafa;
    padding: 10px;
    color: #BD2828;
  }
  .content:not(.with-error) .error,
  .content.with-error .intro,
  .content.with-diagram .intro {
    display: none;
  }
  .content .canvas {
    width: 100%;
  }
  .content .canvas,
  .content .properties-panel-parent {
    display: none;
  }
  .content.with-diagram .canvas,
  .content.with-diagram .properties-panel-parent {
    display: block;
  }
  .buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .buttons > li {
    display: inline-block;
    margin-right: 10px;
  }
  .buttons > li > a {
    background: #DDD;
    border: solid 1px #666;
    display: inline-block;
    padding: 5px;
  }
  .buttons a {
    opacity: 0.3;
  }
  .buttons a.active {
    opacity: 1;
  }
  .properties-panel-parent {
    border-left: 1px solid #ccc;
    overflow: auto;
  }
  .properties-panel-parent:empty {
    display: none;
  }
  .properties-panel-parent > .djs-properties-panel {
    padding-bottom: 70px;
    min-height: 100%;
  }