Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
221
Merge Requests
221
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
1b2cd3a9
Commit
1b2cd3a9
authored
May 28, 2011
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Patch
#1110842
by JohnAlbin: comment preview color is missing due to mis-targeted CSS rule.
parent
2f126799
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
modules/comment/comment.css
modules/comment/comment.css
+1
-1
modules/system/system.api.php
modules/system/system.api.php
+5
-1
No files found.
modules/comment/comment.css
View file @
1b2cd3a9
...
@@ -8,6 +8,6 @@
...
@@ -8,6 +8,6 @@
.comment-unpublished
{
.comment-unpublished
{
background-color
:
#fff4f4
;
background-color
:
#fff4f4
;
}
}
.
preview
.comment
{
.
comment-preview
{
background-color
:
#ffffea
;
background-color
:
#ffffea
;
}
}
modules/system/system.api.php
View file @
1b2cd3a9
...
@@ -3924,7 +3924,11 @@ function hook_system_themes_page_alter(&$theme_groups) {
...
@@ -3924,7 +3924,11 @@ function hook_system_themes_page_alter(&$theme_groups) {
foreach
(
$theme_groups
as
$state
=>
&
$group
)
{
foreach
(
$theme_groups
as
$state
=>
&
$group
)
{
foreach
(
$theme_groups
[
$state
]
as
&
$theme
)
{
foreach
(
$theme_groups
[
$state
]
as
&
$theme
)
{
// Add a foo link to each list of theme operations.
// Add a foo link to each list of theme operations.
$theme
->
operations
[]
=
l
(
t
(
'Foo'
),
'admin/appearance/foo'
,
array
(
'query'
=>
array
(
'theme'
=>
$theme
->
name
)));
$theme
->
operations
[]
=
array
(
'title'
=>
t
(
'Foo'
),
'href'
=>
'admin/appearance/foo'
,
'query'
=>
array
(
'theme'
=>
$theme
->
name
)
);
}
}
}
}
}
}
...
...
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