forked from coderscom/wp-odoo-form-integrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Settings, Add New and Integrated Forms are implemented
- Loading branch information
Showing
54 changed files
with
10,452 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* All of the CSS for your admin-specific functionality should be | ||
* included in this file. | ||
*/ | ||
|
||
.hidden { display: none; } | ||
|
||
/* Start by setting display:none to make this hidden. | ||
Then we position it in relation to the viewport window | ||
with position:fixed. Width, height, top and left speak | ||
for themselves. Background we set to 80% white with | ||
our animation centered, and no-repeating */ | ||
.modal { | ||
/*display: none;*/ | ||
position: fixed; | ||
z-index: 1000; | ||
top: 0; | ||
left: 0; | ||
height: 100%; | ||
width: 100%; | ||
background: rgba( 255, 255, 255, .6 ) | ||
url('../img/loading.gif') | ||
55% 45% | ||
no-repeat; | ||
} | ||
|
||
/* When the body has the loading class, we turn | ||
the scrollbar off with overflow:hidden */ | ||
body.loading { | ||
overflow: hidden; | ||
} | ||
|
||
/* Anytime the body has the loading class, our | ||
modal element will be visible */ | ||
body.loading .modal { | ||
display: block; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.