Changeset 1283 in ExiteCMS


Ignore:
Timestamp:
02/17/08 10:37:16 (4 years ago)
Author:
hverton
Message:

added wiki actions note, tip and warning, to create different types of info boxes

Location:
modules/common/wiki/php-files/modules/wiki
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • modules/common/wiki/php-files/modules/wiki/css/wikka.css

    r808 r1283  
    552552    padding: 2px; 
    553553} 
     554 
     555/* sidenote.css */ 
     556/* Contains css for tip, note and warn actions. */ 
     557 
     558/* postit note-style information box */ 
     559#note { 
     560        clear: both; 
     561        font-size: 10pt; 
     562        float: left; 
     563        width: 200px; 
     564        border: 1px solid #AAAAAA; 
     565        margin: 15px 10px 0px 0px; 
     566        padding: 0px; 
     567        background-color: #FFF900; 
     568        text-align: justify; 
     569        vertical-align: top; 
     570} 
     571 
     572#note hr { 
     573        height: 1px; 
     574        border: 1px solid #AAAAAA; 
     575        width: 100%; 
     576} 
     577 
     578#note .title { 
     579        text-align: center; 
     580        font-weight: bold; 
     581        background-color: #EEE800; 
     582        border-bottom: 1px solid #AAAAAA; 
     583        color: #000000; 
     584} 
     585 
     586#note #text { 
     587        padding: 4px; 
     588        color: #000000; 
     589} 
     590 
     591/* tip information box */ 
     592#tip { 
     593        clear: both; 
     594        font-size: 10pt; 
     595        float: left; 
     596        width: 200px; 
     597        border: 1px solid #AAAAAA; 
     598        margin: 15px 10px 0px 0px; 
     599        padding: 0px; 
     600        background-color: #FFFFFF; 
     601        text-align: justify; 
     602        vertical-align: top; 
     603} 
     604 
     605#tip hr { 
     606        height: 1px; 
     607        border: 1px solid #AAAAAA; 
     608        width: 100%; 
     609} 
     610 
     611#tip .title { 
     612        text-align: center; 
     613        font-weight: bold; 
     614        background-color: #EFEFEF; 
     615        border-bottom: 1px solid #AAAAAA; 
     616        color: #000000; 
     617} 
     618 
     619#tip #text { 
     620        padding: 4px; 
     621        color: #000000; 
     622} 
     623 
     624/* warning information box */ 
     625#warn { 
     626        clear: both; 
     627        font-size: 10pt; 
     628        float: left; 
     629        width: 200px; 
     630        border: 1px solid #AAAAAA; 
     631        margin: 15px 10px 0px 0px; 
     632        padding: 0px; 
     633        background-color: #FFAAAA; 
     634        text-align: justify; 
     635        vertical-align: top; 
     636} 
     637 
     638#warn hr { 
     639        height: 1px; 
     640        border: 1px solid #AAAAAA; 
     641        width: 100%; 
     642} 
     643 
     644#warn .title { 
     645        color: #FFFFFF; 
     646        text-align: center; 
     647        font-weight: bold; 
     648        background-color: #FF0000; 
     649        border-bottom: 1px solid #AAAAAA; 
     650} 
     651 
     652#warn #text { 
     653        padding: 4px; 
     654        color: #000000; 
     655} 
Note: See TracChangeset for help on using the changeset viewer.