Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
29077460
Commit
29077460
authored
Aug 12, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
css fix.
parent
10e436ee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
15 deletions
+23
-15
site.css
apps/basic/web/css/site.css
+10
-9
main.css
framework/yii/debug/assets/main.css
+6
-1
view.php
framework/yii/debug/views/default/view.php
+7
-5
No files found.
apps/basic/web/css/site.css
View file @
29077460
body
{
padding-top
:
70px
;
padding-top
:
70px
;
}
.footer
{
border-top
:
1px
solid
#ddd
;
margin-top
:
30px
;
padding-top
:
15px
;
padding-bottom
:
30px
;
border-top
:
1px
solid
#ddd
;
margin-top
:
30px
;
padding-top
:
15px
;
padding-bottom
:
30px
;
}
.jumbotron
{
text-align
:
center
;
background-color
:
transparent
;
text-align
:
center
;
background-color
:
transparent
;
}
.jumbotron
.btn
{
font-size
:
21px
;
padding
:
14px
24px
;
font-size
:
21px
;
padding
:
14px
24px
;
}
framework/yii/debug/assets/main.css
View file @
29077460
...
...
@@ -139,5 +139,10 @@ ul.trace {
}
.callout
{
margin
:
0
0
10px
0
;
padding
:
5px
10px
;
padding
:
5px
;
}
.list-group
.glyphicon
{
float
:
right
;
margin-right
:
-15px
;
}
framework/yii/debug/views/default/view.php
View file @
29077460
...
...
@@ -28,15 +28,17 @@ $this->title = 'Yii Debugger';
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-2"
>
<
ul
class=
"nav nav-pills nav-stacked
"
>
<
div
class=
"list-group affix-top
"
>
<?php
foreach
(
$panels
as
$id
=>
$panel
)
{
$link
=
Html
::
a
(
Html
::
encode
(
$panel
->
getName
()),
array
(
'view'
,
'tag'
=>
$tag
,
'panel'
=>
$id
));
echo
Html
::
tag
(
'li'
,
$link
,
array
(
'class'
=>
$panel
===
$activePanel
?
'active'
:
null
));
$label
=
'<i class="glyphicon glyphicon-chevron-right"></i>'
.
Html
::
encode
(
$panel
->
getName
());
echo
Html
::
a
(
$label
,
array
(
'view'
,
'tag'
=>
$tag
,
'panel'
=>
$id
),
array
(
'class'
=>
$panel
===
$activePanel
?
'list-group-item active'
:
'list-group-item'
,
));
}
?>
</
ul
>
</div>
<!--/span-->
</
div
>
</div>
<div
class=
"col-lg-10"
>
<div
class=
"callout callout-danger"
>
<?php
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment