2014-01-07 04:52:30 +00:00
/ *
Copyright 2013 The Camlistore Authors
Licensed under the Apache License , Version 2 . 0 ( the "License" ) ;
you may not use this file except in compliance with the License .
You may obtain a copy of the License at
http : / / www . apache . org / licenses / LICENSE-2 . 0
Unless required by applicable law or agreed to in writing , software
distributed under the License is distributed on an "AS IS" BASIS ,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
See the License for the specific language governing permissions and
limitations under the License .
* /
2014-08-30 19:02:27 +00:00
@ import ( less ) "prefix-free.css" ;
2012-12-23 20:43:46 +00:00
/* Tile view of BlobItem */
. cam-blobitem {
2014-01-07 04:52:30 +00:00
display : inline-block ;
2014-04-06 07:56:32 +00:00
font-size : 0 . 8em ;
2012-12-23 20:43:46 +00:00
}
2013-10-04 02:28:13 +00:00
. cam-blobitem > a {
2014-01-07 04:52:30 +00:00
text-decoration : none ;
2013-10-04 02:28:13 +00:00
}
. cam-blobitem-thumbclip {
2014-01-07 04:52:30 +00:00
position : relative ;
overflow : hidden ;
2013-08-05 05:23:02 +00:00
}
2013-12-28 01:31:12 +00:00
. cam-blobitem-loading {
2014-01-07 04:52:30 +00:00
background-color : rgb ( 240 , 240 , 240 ) ;
2013-12-28 01:31:12 +00:00
}
2013-07-29 08:02:40 +00:00
. cam-blobitem-thumb {
2014-01-07 04:52:30 +00:00
display : block ;
position : relative ;
2012-12-24 01:52:09 +00:00
}
2014-04-06 07:56:32 +00:00
. cam-blobitemcontainer-50 {
2014-01-07 04:52:30 +00:00
font-size : 10px ;
2012-12-24 01:52:09 +00:00
}
2014-04-06 07:56:32 +00:00
. cam-blobitemcontainer-75 {
2014-01-07 04:52:30 +00:00
font-size : 12px ;
2012-12-24 01:52:09 +00:00
}
2014-04-06 07:56:32 +00:00
. cam-blobitemcontainer-100 {
2014-01-07 04:52:30 +00:00
font-size : 12px ;
2012-12-24 01:52:09 +00:00
}
2014-04-06 07:56:32 +00:00
. cam-blobitemcontainer-150 {
2014-01-07 04:52:30 +00:00
font-size : 13px ;
2012-12-24 01:52:09 +00:00
}
2014-04-06 07:56:32 +00:00
. cam-blobitemcontainer-200 {
2014-01-07 04:52:30 +00:00
font-size : 14px ;
2012-12-23 20:43:46 +00:00
}
2014-04-06 07:56:32 +00:00
. cam-blobitemcontainer-250 {
2014-01-07 04:52:30 +00:00
font-size : 14px ;
2012-12-23 20:43:46 +00:00
}
2013-01-20 21:56:13 +00:00
. cam-blobitem-thumbtitle {
2014-01-07 04:52:30 +00:00
overflow : hidden ;
padding : 0 1ex ;
text-align : center ;
text-overflow : ellipsis ;
display : block ;
2014-04-06 07:56:32 +00:00
color : # 222 ;
2012-12-23 20:43:46 +00:00
}
2013-07-09 23:04:08 +00:00
2013-09-29 09:01:46 +00:00
. cam-blobitem . cam-dropactive {
2014-01-07 04:52:30 +00:00
border : 1px solid # acf ! important ;
outline : 1px solid # acf ! important ;
background : # e5efff ;
2013-07-09 23:04:08 +00:00
}
2013-09-29 23:51:09 +00:00
. cam-blobitem . checkmark {
2014-01-07 04:52:30 +00:00
background-image : url ( 'checkmark2.svg' ) ;
background-repeat : no-repeat ;
background-size : 100 % 100 % ;
cursor : pointer ;
height : 25px ;
left : 5px ;
opacity : 0 ;
position : absolute ;
top : 5px ;
2014-08-30 19:02:27 +00:00
. transition ( opacity 0 . 2s ease ) ;
2014-01-07 04:52:30 +00:00
width : 25px ;
2014-01-15 09:07:38 +00:00
z-index : 2 ;
2014-01-08 10:00:24 +00:00
/* To force us into a graphics layer, otherwise we get weird effects as we transition in and out of one during animation. See: https://code.google.com/p/camlistore/issues/detail?id=284. */
2014-08-30 19:02:27 +00:00
. transform ( scale3d ( 1 , 1 , 1 ) ) ;
2013-09-29 23:51:09 +00:00
}
. cam-blobitem . goog-control-disabled . checkmark {
2014-01-07 04:52:30 +00:00
display : none ;
2013-09-29 23:51:09 +00:00
}
. cam-blobitem . goog-control-hover . checkmark {
2014-01-07 04:52:30 +00:00
opacity : 0 . 6 ;
2013-09-29 23:51:09 +00:00
}
. cam-blobitem . goog-control-hover . checkmark : hover {
2014-01-07 04:52:30 +00:00
opacity : 1 ! important ;
2013-09-29 23:51:09 +00:00
}
. cam-blobitem . goog-control-checked . checkmark {
2014-01-07 04:52:30 +00:00
opacity : 1 ! important ;
2013-09-29 23:51:09 +00:00
}
2013-10-14 01:12:53 +00:00
. cam-blobitem . goog-control-checked . checkmark {
2014-01-07 04:52:30 +00:00
background-image : url ( 'checkmark2_blue.svg' ) ;
2013-09-29 23:51:09 +00:00
}