summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/app/views/home/widgets-home/widgets-home.less
blob: 46e5b1fd18c543b47ec1e82889a9212c73425307 (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
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
.w-ecomp-widgets-home{
  //.bg_u;//white for 1702
  .bg_w;  // gray for 1610
  position: @page-main-position;
  top: @page-main-top;
  left: @page-main-left;
  right: @page-main-right;
  bottom: @page-main-bottom;
  padding-top: @padding-top;
  overflow-y: @page-main-overflow-y;
  padding-left: @padding-left-side;

  .widget-gridster-header {
    background-color:#ffffff;
  }

  .widget-gridster-footer {
    background-color:#ffffff
  }

  .widget-iframe {
    width: 100%;
    height: 90%;
  }

  .widget-image {
    cursor: pointer;
    width: 20px;
    height: 25px;
  }

  .enlarge-content{
    top: 120px;
    left: 400px;
    width:1170px;
    height:600px;
    right: 0;
    bottom: 0;
    left: 0;
    background: none repeat scroll 0 0 #f2f2f2;
  }

  .enlarge-close-button{
    .btn-blue;
    position: relative;
    top : -20px;
    left : 1145px;
    width : 25px;
  }

  .widgets-home-container {
    .content_justify;
    position: relative;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 32px;
    width: 100%;

    .widgets-home-title {
      .a24r;
      margin: auto;
      .content_justify;
    }
    .portals-list {
      min-height: 70vh;
      //display: flex;
      justify-content: center;
      flex-flow: row wrap;
      width: 1170px;

      margin: auto;
      margin-bottom: 63px;

      .portals-list-item {
        background-color: @u;
        border-radius: 2px;
        box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1);
        display: inline-block;
        width: 360px;
        height: 300px;
        background-size: cover;
        cursor: pointer;
        margin: 15px;
        overflow: hidden;

        .portals-item-info {
          background-color: @u;
          height: 50px;
          top: 180px;
         // position: relative;
          box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1);
          padding: 16px;

          .info-title {
            .a24r;
            margin-bottom: 4px;
            
            text-overflow: ellipsis;
            overflow: hidden;
          }
          .info-description {
            .c16r;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
          }
          .info-button {
            .btn-green;
            width: 96px;
          //  position: absolute;
            bottom: 16px;
            left: 16px;
          }

          &:hover {
            opacity: .93;
            z-index: 3;
          }
        }
      }
    }
  }
}

.gridster-item-container .gridster-item-body{
	bottom:0px;
	overflow:hidden;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}