fix button roundness

This commit is contained in:
2015-04-23 23:59:06 +02:00
parent 23ea454d9b
commit 345ca91a43
7 changed files with 16 additions and 40 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ $.prototype.addButton = function(sType, sTitle, oClickLink, sId, sButtonClass, s
{ {
$This = $(this); $This = $(this);
sButtonClass = sButtonClass || ''; sButtonClass = sButtonClass || '';
var asAttributes = {id:(sId || ''), 'class':'button round'+sButtonClass}; var asAttributes = {id:(sId || ''), 'class':'button round '+sButtonClass};
//Link //Link
var bLink = (typeof oClickLink == 'string'); var bLink = (typeof oClickLink == 'string');
+8 -32
View File
@@ -145,52 +145,28 @@ img {
/* Classes */ /* Classes */
.round_top { .round_top {
-moz-border-radius:10px 10px 0 0; @include round(10px, 10px, 0, 0);
-webkit-border-radius:10px 10px 0 0;
-khtml-border-radius:10px 10px 0 0;
border-radius:10px 10px 0 0;
} }
.round_bottom { .round_bottom {
-moz-border-radius:0 0 10px 10px; @include round(0, 0, 10px, 10px);
-webkit-border-radius:0 0 10px 10px;
-khtml-border-radius:0 0 10px 10px;
border-radius:0 0 10px 10px;
} }
.round_right { .round_right {
-moz-border-radius:0 10px 10px 0; @include round(0, 10px, 10px, 0);
-webkit-border-radius:0 10px 10px 0;
-khtml-border-radius:0 10px 10px 0;
border-radius:0 10px 10px 0;
} }
.round_left { .round_left {
-moz-border-radius:10px 0 0 10px; @include round(10px, 0, 0, 10px);
-webkit-border-radius:10px 0 0 10px;
-khtml-border-radius:10px 0 0 10px;
border-radius:10px 0 0 10px;
} }
.round_bottom_left { .round_bottom_left {
-moz-border-radius:0 0 0 10px; @include round(0, 0, 0, 10px);
-webkit-border-radius:0 0 0 10px;
-khtml-border-radius:0 0 0 10px;
border-radius:0 0 0 10px;
} }
.round { .round {
-moz-border-radius:10px; @include round(10px, 10px, 10px, 10px);
-webkit-border-radius:10px;
-khtml-border-radius:10px;
border-radius:10px;
} }
.tiny_round { .tiny_round {
-moz-border-radius:5px; @include round(5px, 5px, 5px, 5px);
-webkit-border-radius:5px;
-khtml-border-radius:5px;
border-radius:5px;
} }
.tiny_top_right { .tiny_top_right {
-moz-border-radius:5px 0 5px 5px; @include round(5px, 0, 5px, 5px);
-webkit-border-radius:5px 0 5px 5px;
-khtml-border-radius:5px 0 5px 5px;
border-radius:5px 0 5px 5px;
} }
.inc_border { .inc_border {
+2 -2
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -19,11 +19,10 @@ Bug fix:
- [1.1.1] Resize .gif + fix unresized ones - [1.1.1] Resize .gif + fix unresized ones
- Fix les "xxx se déconnecte" intempestives - Fix les "xxx se déconnecte" intempestives
- code reader : mettre la scrollbar à l'intérieur du code - code reader : mettre la scrollbar à l'intérieur du code
- Trouver une meilleure place pour le menu
New features: New features:
- aide à la saisie dans les options - aide à la saisie dans les options
- [1.2.0] Chat: New "Connected Users" Panel: On click, opening a sub panl with icons: profil link, status, PM. - [1.2.0] Chat: New "Connected Users" Panel: On click, opening a sub panel with icons: profil link, status, PM.
- [1.2.0] Unread messages par user (dedicated table). - [1.2.0] Unread messages par user (dedicated table).
- [1.2.0] Refiltre par type dans le search - [1.2.0] Refiltre par type dans le search
- [1.2.0] Remplacer dans les options : oui / non par [-0] (f205) [O-] (f204) - [1.2.0] Remplacer dans les options : oui / non par [-0] (f205) [O-] (f204)
@@ -38,6 +37,7 @@ New features:
- accès externe à certains fichiers (partage temporaire) - accès externe à certains fichiers (partage temporaire)
- ajout code : ajouter un bouton "aperçu" - ajout code : ajouter un bouton "aperçu"
- code page : hover -> wait 1sec -> if(focus) -> expand {-5 lines, + 5 lines} - code page : hover -> wait 1sec -> if(focus) -> expand {-5 lines, + 5 lines}
- Mode furtif pour le chat
Design Design
- profil : donner la possibilité de mettre des images de profil - profil : donner la possibilité de mettre des images de profil