Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-export
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mikke Schirén
drupal-export
Commits
e5d237dd
Commit
e5d237dd
authored
15 years ago
by
Joakim Stai
Browse files
Options
Downloads
Patches
Plain Diff
Oops: Removed CSS and JS files from the future that were committed by mistake
parent
8fc271dc
Branches
master
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
export_ui/export_ui.css
+0
-67
0 additions, 67 deletions
export_ui/export_ui.css
export_ui/export_ui.js
+0
-19
0 additions, 19 deletions
export_ui/export_ui.js
with
0 additions
and
86 deletions
export_ui/export_ui.css
deleted
100644 → 0
+
0
−
67
View file @
8fc271dc
/**
* Preset form
*/
div
.export-column-right
input
.form-text
,
div
.export-column-left
input
.form-text
{
width
:
90%
;
}
div
.export-column-left
{
width
:
20%
;
float
:
left
;
}
div
.export-column-right
{
width
:
80%
;
float
:
right
;
}
/**
* Panel links
*/
div
.export-column-left
ul
#export-panel-links
,
div
.export-column-left
ul
#export-panel-links
li
,
div
.export-column-left
ul
#export-panel-links
li
a
{
display
:
block
;
float
:
none
;
padding
:
0px
;
margin
:
0px
;
}
div
.export-column-left
ul
#export-panel-links
{
margin
:
0px
0px
10px
;
}
div
.export-column-left
ul
#export-panel-links
li
a
{
background
:
#f8f8f8
;
padding
:
5px
5px
4px
4px
;
border-left
:
1px
solid
#eee
;
border-bottom
:
1px
solid
#eee
;
cursor
:
pointer
;
}
div
.export-column-left
ul
#export-panel-links
li
a
.export-panel-active
{
padding
:
4px
5px
4px
4px
;
background
:
#fff
;
border
:
1px
solid
#ccc
;
border-right
:
0px
;
margin-right
:
-2px
;
}
/* Panels */
div
.export-panel
{
border
:
1px
solid
#ccc
;
background
:
#fff
;
padding
:
10px
;
margin
:
0px
0px
20px
;
display
:
none
;
}
div
.export-panel-active
{
display
:
block
;
}
/* Panels */
tr
.export-status-overridden
{
font-weight
:
bold
;
}
This diff is collapsed.
Click to expand it.
export_ui/export_ui.js
deleted
100644 → 0
+
0
−
19
View file @
8fc271dc
/**
* @file
* JavaScript functions for the Export module's administration interface.
*/
/**
* Drupal behavior for Export UI form.
*/
Drupal
.
behaviors
.
export_ui
=
function
(
context
)
{
$
(
'
#export-ui-manage-form:not(.export_ui-processed)
'
,
context
).
each
(
function
()
{
$
(
'
ul#export-panel-links li a
'
,
context
).
click
(
function
()
{
$
(
'
.export-panel-active
'
,
context
).
removeClass
(
'
export-panel-active
'
);
var
panel
=
$
(
this
).
attr
(
'
href
'
).
split
(
'
#
'
)[
1
];
$
(
'
div.
'
+
panel
,
context
).
addClass
(
'
export-panel-active
'
);
$
(
this
).
addClass
(
'
export-panel-active
'
);
return
false
;
});
}).
addClass
(
'
export_ui-processed
'
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment