/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/css/codeviewer.css

  • Committer: Gustav Hartvigsson
  • Date: 2013-04-11 16:45:55 UTC
  • mfrom: (23.2.1 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130411164555-ljhmrb2ys3xatogt
commited implementation group one's team branch.
20130411.

Merge proposal comment:
Removed codeigniter user guide, shouldn't be in the repo
Added and implemented CKEditor Wysiwyg editor for editing of pages
Made already uploaded code files visible as you edit a page
Implemented Adams dropdown menu in codeviewer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
        margin-top: -45px;
26
26
}
27
27
 
28
 
.dropdown-menu {
29
 
        background-color: #333333;
30
 
        width: 320px;
31
 
}
32
 
 
33
 
.dropdown-info {
34
 
        background-color: #0a68ad;
35
 
        width: 100%;
36
 
        color: #fff;
37
 
        font-size: 25px;
38
 
        font-weight: bold;
39
 
        text-align: center;
40
 
}
41
 
 
42
 
.dropdown-info p{
43
 
        margin-top: 15px;
44
 
}
45
 
 
46
 
.dropdown-menu a {
47
 
        color: white !important; /* important because otherwise bootstrap takes over */
48
 
}
49
 
 
50
28
#nav .separator {
51
29
        width: 0px; /* amazing, this seems to work */
52
30
        height:50px;
89
67
        opacity: 0.5;
90
68
        position: absolute;
91
69
        z-index: 4;
 
70
}
 
71
 
 
72
#dropdown {
 
73
        width: 500px;
 
74
        position: absolute;
 
75
        background-color: #333333;
 
76
        z-index: 100;
 
77
        left: 5%;
 
78
        display: none;
 
79
}
 
80
 
 
81
#dropdown * {
 
82
        position: relative;
 
83
        margin:0px;
 
84
        padding:0px;
 
85
}
 
86
section.group {
 
87
        width:100%;
 
88
        top:0px;
 
89
        height:auto;
 
90
}
 
91
section.group div.heading {
 
92
        font-size:14px;
 
93
        font-family:verdana;
 
94
        cursor:pointer;
 
95
        width:100%;
 
96
        height:auto;
 
97
        color:#fff;
 
98
        background-color:#305EB3;
 
99
        border-top:#628DDE 1px solid;
 
100
        border-bottom:#284882 1px solid;
 
101
}
 
102
section.group div.heading h1 {
 
103
        font-size:14px;
 
104
        font-weight:normal;
 
105
        padding:6px 0 6px 10px;
 
106
        max-width:60%;
 
107
}
 
108
section.inner.group div.heading {
 
109
        background-color:#444;
 
110
        border-top:#666 1px solid;
 
111
        border-bottom:#333 1px solid;
 
112
}
 
113
section.inner.group div.heading h1 {
 
114
        padding-left:13px;
 
115
        font-size:12px;
 
116
}
 
117
section.group div.content {
 
118
        width:100%;
 
119
        height:0px;
 
120
        min-height:auto;
 
121
        overflow:hidden;
 
122
        background-color:#333;
 
123
        border:solid #f00 0px;
 
124
        color:#fff;
 
125
}
 
126
section.group div.content a {
 
127
        color:inherit;
 
128
        font-family:Verdana;
 
129
        font-size:12px;
 
130
        text-decoration:none;
 
131
        display:list-item;
 
132
        padding:4px 0 4px 20px;
 
133
}
 
134
section.group div.content a:hover {
 
135
        text-decoration:underline;
 
136
}
 
137
section.group div.content a:first-child {
 
138
        padding-top:7px
 
139
}
 
140
section.group div.content a:last-child {
 
141
        padding:4px 0 10px 20px;
 
142
}
 
143
section.group div.heading.pink {
 
144
        background-color:#D9388B;
 
145
        border-top:#F772B7 1px solid;
 
146
        border-bottom:#A12263 1px solid;
92
147
}
 
 
b'\\ No newline at end of file'