Version 15.175.10

This commit is contained in:
Antonio Cañas Vargas 2016-04-04 03:51:42 +02:00
parent b157943f4e
commit 05e595c639
2 changed files with 20 additions and 18 deletions

View File

@ -454,8 +454,8 @@ a:hover /* Default ==> underlined */
height:68px;
margin:0;
padding:0;
border-radius:6px 6px 0 0;
box-shadow:inset -2px -2px 1px 0 rgba(50,50,50,0.2);
border-radius:5px 5px 0 0;
box-shadow:inset 0 -1px 1px 0 rgba(50,50,50,0.2);
text-align:center;
vertical-align:top;
overflow:hidden;
@ -468,8 +468,8 @@ a:hover /* Default ==> underlined */
height:68px;
margin:0;
padding:0;
border-radius:6px 6px 0 0;
box-shadow:inset -2px -2px 1px 0 rgba(50,50,50,0.2);
border-radius:5px 5px 0 0;
box-shadow:inset 0 -1px 1px 0 rgba(50,50,50,0.2);
text-align:center;
vertical-align:top;
overflow:hidden;
@ -505,8 +505,8 @@ a:hover /* Default ==> underlined */
height:68px;
margin:0;
padding:0;
border-radius:6px 6px 0 0;
box-shadow:inset -2px -2px 1px 0 rgba(50,50,50,0.2);
border-radius:5px 5px 0 0;
box-shadow:inset 0 -1px 1px 0 rgba(50,50,50,0.2);
text-align:center;
vertical-align:top;
overflow:hidden;
@ -519,8 +519,8 @@ a:hover /* Default ==> underlined */
height:68px;
margin:0;
padding:0;
border-radius:6px 6px 0 0;
box-shadow:inset -2px -2px 1px 0 rgba(50,50,50,0.2);
border-radius:5px 5px 0 0;
box-shadow:inset 0 -1px 1px 0 rgba(50,50,50,0.2);
text-align:center;
vertical-align:top;
overflow:hidden;
@ -539,10 +539,10 @@ a:hover /* Default ==> underlined */
text-decoration:none;
}
.TAB_ON_WHITE {background-color:rgba(247, 246, 245, 0.95);}
.TAB_ON_GREY {background-color:rgba(247, 246, 245, 0.95);}
.TAB_ON_BLUE {background-color:rgba(232, 243, 246, 0.95);}
.TAB_ON_YELLOW {background-color:rgba(255, 242, 189, 0.95);}
.TAB_ON_WHITE {background-color:rgba(247, 246, 245, 0.99);}
.TAB_ON_GREY {background-color:rgba(247, 246, 245, 0.99);}
.TAB_ON_BLUE {background-color:rgba(232, 243, 246, 0.99);}
.TAB_ON_YELLOW {background-color:rgba(255, 242, 189, 0.99);}
.TAB_OFF_WHITE {background-color:#D4D4D4;}
.TAB_OFF_GREY {background-color:#D4D4D4;}
@ -651,7 +651,7 @@ a:hover /* Default ==> underlined */
margin:-8px 0 0 0;
padding:8px 0;
border-radius:6px;
box-shadow:inset -2px -2px 1px 0 rgba(50,50,50,0.2);
box-shadow:inset 0 -1px 1px 0 rgba(50,50,50,0.2);
text-align:center;
vertical-align:top;
position:relative;
@ -666,7 +666,7 @@ a:hover /* Default ==> underlined */
margin:-8px 0 0 0;
padding:8px 0;
border-radius:6px;
box-shadow:inset -2px -2px 1px 0 rgba(50,50,50,0.2);
box-shadow:inset 0 -1px 1px 0 rgba(50,50,50,0.2);
text-align:center;
vertical-align:top;
position:relative;
@ -1297,8 +1297,9 @@ a:hover /* Default ==> underlined */
margin:5px 0;
padding:8px 12px 20px 12px;
background-color:white;
border-radius:4px;
box-shadow:1px 1px 2px #CCC;
border-radius:2px;
/* box-shadow:1px 1px 2px #CCC; */
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
text-align:center;
overflow:hidden;
}

View File

@ -139,13 +139,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.175.9 (2016-04-04)"
#define CSS_FILE "swad15.173.1.css"
#define Log_PLATFORM_VERSION "SWAD 15.175.10 (2016-04-04)"
#define CSS_FILE "swad15.175.10.css"
#define JS_FILE "swad15.131.3.js"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/*
Version 15.175.10:Apr 04, 2016 Changes in CSS. (197955 lines)
Version 15.175.9: Apr 04, 2016 Fixed bug in edition of a test question. (197953 lines)
Version 15.175.8: Apr 04, 2016 Code refactoring related to receiving and processing image file. (197945 lines)
Version 15.175.7: Apr 04, 2016 Code refactoring related to image associated to a test question.