Skip to content

Commit 0c29b9c

Browse files
committed
un correctif + arrangements
1 parent 70711ad commit 0c29b9c

File tree

2 files changed

+60
-11
lines changed

2 files changed

+60
-11
lines changed

aurora/aurora-configuration/src/main/config/data/web/weblib.war/skins/prima/css/main.css

Lines changed: 55 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -278,12 +278,27 @@
278278
.silverpeas-user-notifications.unread-user-notification #notification-count.btn-header {
279279
background-color:var(--couleur-de-fond-clair);
280280
}
281-
.silverpeas-user-notifications.unread-user-notification #notification-count.btn-header a {
282-
border-left:4px solid var(--couleur-flashy);
283-
padding-left:1em;
284-
color:var(--couleur-texte);
281+
.silverpeas-user-notifications.unread-user-notification #notification-count.btn-header a{
285282
font-weight:600;
286283
}
284+
.silverpeas-user-notifications.unread-user-notification #notification-count.btn-header a:before {
285+
content:'';
286+
border-radius:5px;
287+
width:10px;
288+
height:10px;
289+
background:var(--couleur-flashy);
290+
display:inline-block;
291+
margin-right:8px;
292+
animation-duration: .7s;
293+
animation-name: clignoter;
294+
animation-iteration-count: infinite;
295+
transition: none;
296+
}
297+
@keyframes clignoter {
298+
0% { opacity:1; }
299+
40% {opacity:0; }
300+
100% { opacity:1; }
301+
}
287302
.silverpeas-user-notifications {
288303
float:left;
289304
}
@@ -1691,6 +1706,9 @@ a#advancedSearch-link-header {
16911706
height: auto;
16921707
margin-top: 61px;
16931708
}
1709+
.sm-silverpeas ul {
1710+
z-index: 10;
1711+
}
16941712
#nav > ul {
16951713
margin: 0;
16961714
width: 100%;
@@ -1721,14 +1739,40 @@ a#advancedSearch-link-header {
17211739
}
17221740
}
17231741

1724-
1725-
}
1726-
/*@media only screen and (max-width: 1380px) {
1727-
#directory .aff_colonnes li {
1728-
flex-basis:calc( 50% - 4.5em );
1729-
}
17301742

1731-
}*/
1743+
1744+
@media only screen and (max-width: 620px) {
1745+
#topar-header,
1746+
#search-zone-header {
1747+
height: auto;
1748+
background-color: #FFF;
1749+
position: relative;
1750+
top:auto;
1751+
left: auto;
1752+
right:auto;
1753+
border-bottom:1px solid #EEE;
1754+
border-top:1px solid #EEE;
1755+
}
1756+
#logo-header {
1757+
position: relative;
1758+
}
1759+
#nav {
1760+
margin-top: 0;
1761+
}
1762+
a#lastResult-link-header, a#advancedSearch-link-header {
1763+
display: none;
1764+
}
1765+
#search-zone-header{
1766+
padding-top:0;
1767+
}
1768+
.silverpeas-user-notifications .silverpeas-attached-popin {
1769+
left: 0 !important;
1770+
right: 0 !important;
1771+
}
1772+
.silverpeas-user-notifications .silverpeas-attached-popin .silverpeas-attached-popin-content {
1773+
width: auto;;
1774+
}
1775+
}
17321776

17331777
/* ==========================================================================
17341778
Helper classes

aurora/aurora-configuration/src/main/config/data/web/weblib.war/skins/prima/css/stylesheet.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ input[type="submit"]:hover, button[type="submit"]:hover {
120120
input[type="text"] {
121121
min-width:90px;
122122
}
123+
124+
/* pour contre carrer les attributs size défini en dure dans les input) */
125+
.ui-dialog input[type="text"] {
126+
width:calc( 100% - 2em ) !important;
127+
}
123128
input[type="text"]:focus, input[type="text"]:active,
124129
input[type="password"]:focus, input[type="password"]:active,
125130
input[type="date"]:focus, input[type="date"]:active,

0 commit comments

Comments
 (0)