This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f9e617f
Showing
20 changed files
with
2,739 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/* | ||
To change this license header, choose License Headers in Project Properties. | ||
To change this template file, choose Tools | Templates | ||
and open the template in the editor. | ||
*/ | ||
/* | ||
Created on : Nov 28, 2013, 7:09:35 AM | ||
Author : bugraozden | ||
*/ | ||
|
||
.icon-select{ | ||
width:0px; | ||
} | ||
|
||
.icon-select .selected-box { | ||
|
||
position: relative; | ||
margin: 0px; | ||
padding: 0px; | ||
width: 70px; /* sil */ | ||
height: 60px; /* sil */ | ||
border: 1px solid #999999; | ||
|
||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
background-color: white; | ||
|
||
z-index: 1000; | ||
|
||
} | ||
|
||
.icon-select .selected-box:hover { | ||
|
||
position: relative; | ||
margin: 0px; | ||
padding: 0px; | ||
width: 70px; /* sil */ | ||
height: 60px; /* sil */ | ||
border: 1px solid #000000; | ||
background-color: #FFFFFF; | ||
|
||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
|
||
} | ||
|
||
.icon-select .selected-icon { | ||
|
||
position: absolute; | ||
margin: 0px; | ||
padding: 0px; | ||
top:5px; | ||
left:5px; | ||
width: 48px; /* sil */ | ||
height: 48px; /* sil */ | ||
|
||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
|
||
} | ||
|
||
.icon-select .component-icon{ | ||
position: absolute; | ||
bottom:5px; | ||
right:4px; | ||
} | ||
|
||
.icon-select .box { | ||
|
||
position: absolute; | ||
top:0px; | ||
left:71px; | ||
margin: 0px; | ||
padding: 0px; | ||
width: 170px; /* sil */ | ||
height: 170px; /* sil */ | ||
border: 1px solid #EEEEEE; | ||
background-color: #EEEEEE; | ||
|
||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
|
||
|
||
overflow:auto; | ||
/* | ||
-webkit-overflow-scrolling: touch; | ||
*/ | ||
|
||
} | ||
|
||
.icon-select .icon { | ||
position: relative; | ||
margin: 5px 0px 0px 5px; | ||
padding: 0px; | ||
width: 48px; /* sil */ | ||
height: 48px; /* sil */ | ||
border: 1px solid #CCCCCC; | ||
background-color: #FFFFFF; | ||
|
||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
|
||
overflow:hidden; | ||
float: left; | ||
} | ||
|
||
.icon-select .icon:hover { | ||
border: 1px solid #000000; | ||
} | ||
|
||
.icon-select .icon.selected { | ||
position: relative; | ||
margin: 5px 0px 0px 5px; | ||
padding: 0px; | ||
width: 48px; /* sil */ | ||
height: 48px; /* sil */ | ||
border: 1px solid #EEEEEE; | ||
background-color: #EEEEEE; | ||
|
||
-webkit-border-radius: 3px; | ||
-moz-border-radius: 3px; | ||
border-radius: 3px; | ||
|
||
overflow:hidden; | ||
float: left; | ||
} |
Oops, something went wrong.