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
| /*the css for ImageNode dijit*/
| .jimu-img-node{
| font-size: 12px;
| position: relative;
| float: left;
| border-radius: 4px;
| color: #686868;
| overflow: hidden;
| }
| .jimu-img-node .node-box{
| position: absolute;
| top: 0;
| bottom: 32px;
| left: 0;
| width: 100%;
| border-radius: 4px;
| overflow: hidden;
| }
| .jimu-img-node img{
| width: 100%;
| height: 100%;
| cursor: pointer;
| }
| .jimu-img-node .node-label{
| position: absolute;
| width: 100%;
| left: 0;
| bottom: 0;
| height: 30px;
| text-align: center;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
| .jimu-img-node:hover{
| color: #51b1fe;
| }
| .jimu-img-node.jimu-state-selected .node-label{
| background-color: #d9dde0;
| }
|
|