Changeset 4443 for freepbx/branches
- Timestamp:
- 07/19/07 01:17:45 (6 years ago)
- Files:
-
- freepbx/branches/2.3/amp_conf/htdocs/admin/common/mainstyle.css (modified) (7 diffs)
- freepbx/branches/2.3/amp_conf/htdocs/admin/images/category1.png (modified) (previous)
- freepbx/branches/2.3/amp_conf/htdocs/admin/images/header-back.png (modified) (previous)
- freepbx/branches/2.3/amp_conf/htdocs/admin/images/tab-first-current.png (modified) (previous)
- freepbx/branches/2.3/amp_conf/htdocs/admin/images/tab-first.png (modified) (previous)
- freepbx/branches/2.3/amp_conf/htdocs/admin/images/tab-select.png (modified) (previous)
- freepbx/branches/2.3/amp_conf/htdocs/admin/images/tab.png (modified) (previous)
- freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx.php (modified) (1 diff)
- freepbx/branches/2.3/amp_conf/htdocs/admin/views/panel.php (modified) (1 diff)
- freepbx/branches/2.3/amp_conf/htdocs/admin/views/reports.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.3/amp_conf/htdocs/admin/common/mainstyle.css
r4395 r4443 18 18 position: absolute; 19 19 left: 0; 20 top: 75px;20 top: 80px; 21 21 width: 200px; 22 22 padding:0; … … 137 137 background-image: url('../images/tab-hover.png'); 138 138 } 139 #header ul#metanav li. a {139 #header ul#metanav li.first a { 140 140 border-left: 0; 141 141 display: inline; … … 266 266 font-size: 12px; 267 267 font-weight: bold; 268 white-space: nowrap; 269 text-overflow: ellipsis; 270 overflow: hidden; 268 271 269 272 background-image: url('../images/category1.png'); … … 280 283 font-size: 14px; 281 284 font-weight: normal; 285 white-space: nowrap; 286 text-overflow: ellipsis; 287 overflow: hidden; 282 288 color: #072966; 283 289 background-image: url('../images/modules1.png'); … … 299 305 } 300 306 307 #nav ul#nav-tabs { 308 padding-right:0px; 309 padding-left:px; 310 } 301 311 302 312 #nav #nav-tabs li, #nav #nav-tabs li a { 303 313 display:inline; 304 padding-left:0 314 padding-left:0; 315 white-space: nowrap; 316 text-overflow: ellipsis; 317 overflow: hidden; 318 background-position: top left; 305 319 } 306 320 #nav #nav-tabs { 307 321 margin-bottom:0; 308 padding-left: 12px;309 } 310 #nav #nav-tabs li {311 border-top:#ccc;312 margin-right:12px;313 } 314 #nav #nav-tabs li a {315 font-weight:bold;316 } 317 #nav #nav-tabs li.tabs-selected {318 b order-top:2px solid #ff8a00;322 padding-left:0px; 323 } 324 #nav #nav-tabs li a { 325 padding-left:10px; 326 padding-right:10px; 327 } 328 #nav #nav-tabs li a { 329 background-image: url('../images/tab.png'); 330 } 331 #nav #nav-tabs li.tabs-selected a { 332 background-image: url('../images/tab-first-current.png'); 319 333 } 320 334 … … 323 337 #reportnav { 324 338 position:absolute; 325 top:5 5px;326 left: 10px;339 top:57px; 340 left:280px; 327 341 border:1; 328 342 padding: 0 0 0 0; … … 340 354 padding-left:6px; 341 355 padding-right:6px; 356 } 357 #reportframe { 358 position:relative; 359 top:78px; 360 left:10px; 361 border:1; 362 padding: 0 0 0 0; 363 } 364 365 #panelframe { 366 position:relative; 367 top:73px; 368 left:10px; 369 border:1; 370 padding: 0 0 0 0; 342 371 } 343 372 /***** footer *****/ freepbx/branches/2.3/amp_conf/htdocs/admin/views/freepbx.php
r4430 r4443 116 116 //print_sub_tool( _("Home"), "index.php" ,$currentFile=='index.php'); 117 117 print_sub_tool( _("Management"), "manage.php" , $currentFile=='manage.php' ); 118 print_sub_tool( _(" Configuration") , "config.php", $currentFile=='config.php' );118 print_sub_tool( _("Admin") , "config.php", $currentFile=='config.php' ); 119 119 print_sub_tool( _("Reports") , "reports.php", $currentFile=='reports.php' ); 120 120 print_sub_tool( _("Panel") , "panel.php" , $currentFile=='panel.php' ); freepbx/branches/2.3/amp_conf/htdocs/admin/views/panel.php
r4348 r4443 3 3 $template['title'] = $title; 4 4 $template['content'] = 5 '<div >'.5 '<div id="panelframe">'. 6 6 '<iframe width="97%" height="600" frameborder="0" align="top" src="../panel/index_amp.php?context='.$deptname.'"></iframe>'. 7 7 '</div>'; freepbx/branches/2.3/amp_conf/htdocs/admin/views/reports.php
r4395 r4443 11 11 12 12 $template['content'] .= 13 '<div >'.13 '<div id="reportframe">'. 14 14 '<iframe width="97%" height="2000" frameborder="0" align="top" scrolling="auto" src="cdr/cdr.php?s='.$display.($display=='1' ? '&posted=1' : '').'"></iframe>'. 15 15 '</div>';
